ogrish Posted March 23, 2011 Share 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 Link to comment Share on other sites More sharing options...
somdcomputerguy Posted March 23, 2011 Share 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. Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted March 23, 2011 Share 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now