Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Windows 8 shortcut


  • Please log in to reply
2 replies to this topic
crossbred900
  • Members
  • 1 posts
  • Last active: Nov 04 2012 01:49 AM
  • Joined: 04 Nov 2012
I know Windows 8 hasn't been out long, but I'm hoping somebody can help me. When on the desktop Win+d hides/shows all windows, and when on the start screen takes you to the desktop. Whenever I map "key"::#d the Win 8 hotkey to show the desktop, it works when I'm already on the desktop but does nothing when on the start screen.

GodlyCheese
  • Members
  • 719 posts
  • Last active: Nov 11 2014 07:12 PM
  • Joined: 30 Aug 2012
I believe this is due to Metro blocking artifical Hotkey input. Check this thread: http://www.autohotke...e-in-windows-8/

Setting UIAccess=true in the executable's embedded manifest appears to solve this problem. The executable must also be in a trusted location, such as the Program Files folder. For more information and a script which makes the necessary modification for you, see EnableUIAccess.

Thanks to Cliff Smolinsky for posting the following on the Synergy issue tracker:

A number of security changes have been implemented in Windows 8 which prevent programs which are not Metro apps from injecting keys that would remove you from the Metro environment. The way this works is that the keyboard shortcut is ignored if it doesn't come from a physical keyboard or a program that has the appropriate permissions. [...] In order to have the proper permissions, the program must be built with UIAccess (see http://msdn.microsof...y/ms742884.aspx).


I was unable to confirm this via any official source, aside from the following vague comment at MSDN:

An accessibility application can use SendInput to inject keystrokes corresponding to application launch shortcut keys that are handled by the shell. This functionality is not guaranteed to work for other types of applications.


I don't have windows 8 to test with and I'm nowhere near as skilled as Lexikos, but you might be able to solve your issue by running the script as Admin.

EDIT: Running as Admin does nothing to help this situation.

Lexikos
  • Administrators
  • 9844 posts
  • AutoHotkey Foundation
  • Last active:
  • Joined: 17 Oct 2006
I have confirmed that Send #d with an unmodified AutoHotkey.exe does not work unless the Desktop mode is already active, and EnableUIAccess.ahk solves the problem. Running the script as admin does not solve the problem.