Autohotkey + Windows 8.1 + WInKey shortcuts --> Causes the Start Screen to pop up
- by user28417
I have a AHK script with many shortcuts that I have been using for years now.
Most of them are based on the winkey, for example:
; visual studio
visualStudio = ahk_class wndclass_desked_gsk|Afx:400000:8:10011|SWT_Window0
GroupAdd ,visualStudioGroup ,%visualStudio%
#q::
DetectHiddenWindows, %MyDetect%
GroupActivate,visualStudioGroup,R
Winshow
return
When I use these shortcuts, sometimes, but not always, the new Windows 8.1 start screen will popup and then I have to press the shortcut again to get back to the application I wanted to go to.
I was wondering, Is this a known issue? Is there a way to fix it?
Thanks in Advance.