📜  ahk 切换 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:13.551000             🧑  作者: Mango

代码示例1
F10::
if (tgl := !tgl) ; you can have variable whatever you like. It will switch value to 0 or 1
;Some code...
Tooltip, Toggle is switched to %tgl% ,0,0
Return