Skip to content

Instantly share code, notes, and snippets.

@rohinomiya
Created June 18, 2012 15:44
Show Gist options
  • Save rohinomiya/2949004 to your computer and use it in GitHub Desktop.
Save rohinomiya/2949004 to your computer and use it in GitHub Desktop.
AutoHotKeyで、クリック作業を自動化する ref: http://qiita.com/items/a13239df948e4d7fa4d5
;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