I want the ''e'' button to hold down ''s'' and ''f'' when it's down and release ''s'' and ''f'' when its released. What am I doing wrong? HotKeySet("e down","sf1") HotKeySet("e up","sf2") While(1) WEnd Func sf1() Send("{s down}") Send("{f down}") EndFunc Func sf2() Send("{s up}") Send("{f up}") EndFunc Edit: noticed i posted in the wrong section.