While You’ll Find AutoHotkey Offers Many Methods for Turning Things On and Off, This Technique Makes It Easy
Over the years I’ve used a number of different approaches to changing the state of buttons, checkmarks, and various other aspects of AutoHotkey app. But, as recommended by numerous sources, I prefer a simple variable reset to the opposite state (on/true/1 or off/false/0). The code comes in shorthand form using the logical-not (!) operator:
Toggle := !Toggle
When used in an expression, this form for the logical-not (!) operator switches off to on and on to off. Continue reading