作者:
liquidbox (æ¨¹æžæ“ºæ“º)
2024-07-28 19:48:37簡單用message box顯示hello world,
請將大括號中的msgbox跟winclose換成其他的
#Persistent
SetTitleMatchMode, 2
IfWinActive/IfWinExist
toggle := false
F5::
toggle := !toggle ; Toggle the state
if (toggle)
{
MsgBox, Hello World
}
else
{
WinClose, Hello World
}
return