作者liquidbox (树枝摆摆)
看板EzHotKey
标题Re: [请问] 我要如何用AHK实现启动和暂停
时间Sun Jul 28 19:48:37 2024
简单用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
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 118.161.195.212 (台湾)
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/EzHotKey/M.1722167319.A.F65.html