Hi,
I am learning Autoit sorry if my question is simple or not fit here.
I am using the Services.UDF and what I would like to do is to call my functions using hotkey
HotKeySet("^+!d", "Func1") ;crl-Shift-Alt-d
While $bServiceRunning
;insert code here
Sleep(1000)
WEnd
There service and the func1() work fine if I insert the func1() in the While loop, but Hotkey doesn’t work. I am using win7.
I would be grateful if you let me know what I am doing wrong.