Created
June 18, 2012 15:44
-
-
Save rohinomiya/2949004 to your computer and use it in GitHub Desktop.
AutoHotKeyで、クリック作業を自動化する ref: http://qiita.com/items/a13239df948e4d7fa4d5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;iTunes の削除確認ダイアログ自動クリック | |
SetTitleMatchMode,2 | |
#Persistent | |
SetTimer AutoClickiTunes,500 ; millisecond | |
return | |
AutoClickiTunes: | |
IfWinExist, iTunes ahk_class iTunesCustomModalDialog | |
{ | |
ControlClick [ごみ箱] に入れる, iTunes ahk_class iTunesCustomModalDialog | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment