- 2007-10-09 (火) 2:09
- 未分類
Yahoo!オークションにVisualAuctionで出品する際、商品画像登録を簡単にするツールです。
※VisualAuction内では商品登録以外の窓を閉じて置いてください。他の枠に入力されてしまう場合があります。
動作
Alt+写真クリック 画像1から順番にファイルパスが入力されます。
Alt+右クリック 画像3から順番にファイルパスが削除されます。
Alt+センターボタンクリックするとプレビュー表示されます。
Altを離すとプレビュー画面が閉じます。
一時停止、終了方法
タスクトレイアイコンを右クリックして選択して下さい。一時停止中はアイコンがSになります。
準備
VisualAuctionの商品登録と、商品写真のあるフォルダを開きます。この時、商品写真のフォルダを全画面にしても良いですが、上下または左右に並べて表示すると作業がラクかもしれません。
動作確認環境Windows XP Windows Vista 32bit Windows Vista 64bitVisualAuction
2.86.52 VisualAuction 3.79
以下、AutoHotkey スクリプトコードです。
#Persistent
#EscapeChar '
menu, tray, NoStandard
menu, tray, add, 一時停止
menu, tray, add, 終了
return
一時停止:
Suspend
menu, tray, ToggleCheck, 一時停止
return
終了:
ExitApp
#IfWinExist ahk_class ThunderRT6MDIForm, 商品登録
!LButton::
ClipBK = %Clipboard%
Clipboard=
Send,{LButton}
Sleep 20
Send,^c
ClipWait ,1
VAP = %Clipboard%
FileGetSize, $VAPSize, %VAP%,K
if $VAPSize > 500
{
MsgBox ファイルサイズが大きすぎます。500KB以下にしてください。
}
else
{
DetectHiddenWindows,On
ControlGetText, $VAP1, ThunderRT6TextBox1, ahk_class ThunderRT6MDIForm
ControlGetText, $VAP2, ThunderRT6TextBox2, ahk_class ThunderRT6MDIForm
ControlGetText, $VAP3, ThunderRT6TextBox3, ahk_class ThunderRT6MDIForm
if $VAP1 =
{
ControlSetText,ThunderRT6TextBox1,%VAP%,ahk_class ThunderRT6MDIForm
}
else if $VAP2 =
{
ControlSetText,ThunderRT6TextBox2,%VAP%,ahk_class ThunderRT6MDIForm
}
else if $VAP3 =
{
ControlSetText,ThunderRT6TextBox3,%VAP%,ahk_class ThunderRT6MDIForm
}
}
Clipboard = %ClipBK%
return
!RButton::
DetectHiddenWindows,On
ControlGetText, $VAP1, ThunderRT6TextBox1, ahk_class ThunderRT6MDIForm
ControlGetText, $VAP2, ThunderRT6TextBox2, ahk_class ThunderRT6MDIForm
ControlGetText, $VAP3, ThunderRT6TextBox3, ahk_class ThunderRT6MDIForm
if $VAP3 >
{
ControlSetText,ThunderRT6TextBox3,,ahk_class ThunderRT6MDIForm
}
else if $VAP2 >
{
ControlSetText,ThunderRT6TextBox2,,ahk_class ThunderRT6MDIForm
}
else if $VAP1 >
{
ControlSetText,ThunderRT6TextBox1,,ahk_class ThunderRT6MDIForm
}
return
!MButton::
ControlGetText, $VAP1, ThunderRT6TextBox1, ahk_class ThunderRT6MDIForm
ControlGetText, $VAP2, ThunderRT6TextBox2, ahk_class ThunderRT6MDIForm
ControlGetText, $VAP3, ThunderRT6TextBox3, ahk_class ThunderRT6MDIForm
Gui, Add, Picture, h222 w-1, %$VAP1%
Gui, Add, Picture, h222 w-1, %$VAP2%
Gui, Add, Picture, h222 w-1, %$VAP3%
Gui,Show,,
KeyWait, Alt
GUI, Destroy
return
タグ: AutoHotkey, VisualAuction
同じタグの投稿
- Newer: uberOptionsの入手方法
- Older: SetPoint – uberOptionsの日本語化
コメント:0
トラックバック:0
- このエントリーのトラックバックURL
- http://kirock.net/article/avam/trackback/
- Listed below are links to weblogs that reference
- VisualAuction 商品画像登録 支援ツール マウス版 from 記録係の記録帳