On Windows
, when you press Win+f, the Windows Search utility will pop up. I want to redefine this short cut and point to another program (yes, it's also a search utility, everything). I tried the following code but it doesn't work.
; open everything.exe
HotKeySet("#f", "open_everything")
; # win
; ^ ctrl
; + shift
; ! alt
While 1
Sleep(200)
WEnd
; open everything
Func open_everything()
MsgBox(4, "", "everything ... ")
EndFunc
When I change the short cut to Win+z, everything works.
; open everything.exe
HotKeySet("#z", "open_everything")
; # win
; ^ ctrl
; + shift
; ! alt
While 1
Sleep(200)
WEnd
; open everything
Func open_everything()
MsgBox(4, "", "everything ... ")
EndFunc
Any ideas of this problem? Thanks