Autohotkey + Windows 8.1 + WInKey shortcuts --> Causes the Start Screen to pop up

Posted by user28417 on Super User See other posts from Super User or by user28417
Published on 2013-11-05T07:34:12Z Indexed on 2013/11/07 10:00 UTC
Read the original article Hit count: 140

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.

© Super User or respective owner

Related posts about windows-8

Related posts about keyboard-shortcuts