Hotkey being overridden by another application?

Y

Yvonne G

How can one over-ride another application's hotkey?

I have a template that has cntrl + alt + L assigned to a macro.
This hotkey doesn't work on PCs that have the Intel Extreme Graphics
application with hotkeys enabled, unless I log on to each workstation
as Administrator and disable the hotkeys.

Is there a code work-around? If so, would someone be good enough to
post a sample? Thanks.
 
H

Harold

You can use Keybindings.
This is an example from the Help file:
This example assigns the CTRL+ALT+W key combination to the FileClose
command. This keyboard customization is saved in the Normal template.

CustomizationContext = NormalTemplate
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyControl, wdKeyAlt, _
wdKeyW), KeyCategory:=wdKeyCategoryCommand, _
Command:="FileClose"
You can assign the keybinding in the Normal.dot or a template addin that is
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top