Is there a way to use Virtual Key Codes as a modifier for Press and/or Send?
I would like to be able to "Press" some of the Windows 2000/XP keys like VK_VOLUME_MUTE or VK_LAUNCH_MAIL, for example.
See the list at:
http://msdn.microsoft.com/library/defau ... yCodes.asp
Use Virtual Key Codes for Press and/or Send?
Moderators: JRL, Dorian (MJT support)
-
- Newbie
- Posts: 5
- Joined: Mon Dec 30, 2002 10:33 pm
-
- Newbie
- Posts: 5
- Joined: Mon Dec 30, 2002 10:33 pm
I understand that it depends on the Microsoft driver software installed. My problem is that I don't have a keyboard with these keys on them (I use a special ergonomic keyboard). I do have a 58-key programmable keypad, though, and would like to assign these to it. I would also like to include some of these special keys in a sequence of functions.
So I need some way for a tool, such as Macro Scheduler, to generate these key codes.
If this isn't possible, I could probably borrow one of the Microsoft multimedia keyboards long enough to map the codes onto my programmable keypad.
-- Tommy
So I need some way for a tool, such as Macro Scheduler, to generate these key codes.
If this isn't possible, I could probably borrow one of the Microsoft multimedia keyboards long enough to map the codes onto my programmable keypad.
-- Tommy
Hi Tommy,
You don't need a keyboard to generate the regular scan codes. The primary function of Macro Scheduler is to simulate keystrokes. Just create a sample Macro Scheduler script with the following statements:
run>c:\windows\notepad.exe
Sen>Happy New Year!
// You may close the Notepad window:
Press ALT
Press F4
// You may shut down you PC under Windows XP
Presss RWinkey
Sen>UU
Hope you find the above sample script helpful.
You don't need a keyboard to generate the regular scan codes. The primary function of Macro Scheduler is to simulate keystrokes. Just create a sample Macro Scheduler script with the following statements:
run>c:\windows\notepad.exe
Sen>Happy New Year!
// You may close the Notepad window:
Press ALT
Press F4
// You may shut down you PC under Windows XP
Presss RWinkey
Sen>UU
Hope you find the above sample script helpful.