Home > 未分類 > VisualAuction 商品画像登録 支援ツール マウス版

VisualAuction 商品画像登録 支援ツール マウス版

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

avam.zip

以下、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


タグ: ,
同じタグの投稿

コメント:0

コメントフォーム
Remember personal info

トラックバック:0

このエントリーのトラックバックURL
http://kirock.net/article/avam/trackback/
Listed below are links to weblogs that reference
VisualAuction 商品画像登録 支援ツール マウス版 from 記録係の記録帳

Home > 未分類 > VisualAuction 商品画像登録 支援ツール マウス版

Return to page top