Here's a way for you to do sequential actions through a single hotkey, expandable to more than just 2 options: HotKeySet('\', 'fc') ; Keep in mind that Send can trigger hotkeys, so using '1' is a bad idea if you're Sending a 1 in your function While True Sleep(10) WEnd Func fc() Local Static $iCount = 0 Local Const $iCountMax = 5 Switch $iCount Case 0 ; Keep in mind if you're starting at 0 or 1, and what you reset it to&