基本


AutoHotKey?を有効化、無効化、リロードするためのキーアサイン

vk1Dsc07B & F12:: ; スクリプトの再読み込み&有効化(デバッグ用)
	Suspend,Permit
	Suspend,Off
	Reload
	return

vk1Dsc07B & F11:: ; スクリプトの有効化/無効化(デバッグ用)
	Suspend,Permit
	Suspend,Toggle
	return

押しやすさ優先

Ctrl  & RSHIFT:: ; スクリプトの再読み込み&有効化(デバッグ用)
	Suspend,Permit
	Suspend,Off
	Reload
	return

IDE固有の処理を記述する方法

全IDEをチェックしたわけではないのでかなり適当 より限定的なものを上の方に、より汎用的なものを下の方に記述していく

#IfWinActive, MyProject - Delphi XE6 ahk_class TAppBuilder

; MyProject固有の処理
#IfWinActive, Delphi XE6 ahk_class TAppBuilder

; Delphi XE6固有の処理
#IfWinActive, Delphi XE5 ahk_class TAppBuilder

; Delphi XE5固有の処理
#IfWinActive, Delphi XE4 ahk_class TAppBuilder

; Delphi XE4固有の処理
#IfWinActive, Delphi XE3 ahk_class TAppBuilder

; Delphi XE3固有の処理
#IfWinActive, Delphi XE2 ahk_class TAppBuilder

; Delphi XE2固有の処理
#IfWinActive, Delphi XE ahk_class TAppBuilder

; Delphi XE共通の処理
; もしかしたら初代XE固有の処理