ogrish 0 Posted March 23, 2011 (edited) Hi,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 ... ") EndFuncWhen 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 ... ") EndFuncAny ideas of this problem? Thanks Edited March 23, 2011 by ogrish Share this post Link to post Share on other sites
somdcomputerguy 103 Posted March 23, 2011 (edited) HotKeySetread <b>The following hotkeys cannot be set:</b>. Edited March 23, 2011 by somdcomputerguy - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
AdmiralAlkex 125 Posted March 23, 2011 can do it .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Share this post Link to post Share on other sites