Whit this macro i can press XXXXX wheen i press F8 but i ned press XXXXX when i press control F8?
OnEvent>Key_Down,VK119,0,MainMacro (VK119 corrisponde al tasto F8)
SRT>MainMacro
send>XXXXX
Wait>0.1
END>MainMacro
Label>IdleLoop
Wait>0.01
Goto>IdleLoop
Help me please
How can start a macro wheen i press control F8?
Moderators: JRL, Dorian (MJT support)
-
- Newbie
- Posts: 15
- Joined: Sat Dec 12, 2009 11:20 pm
See the information under help for OnEvent>
To use the key_press onevent for F1 + control key, you need to set the key_press "modifier" parameter to "2". So your first line will look like:
OnEvent>Key_Down,VK119,2,MainMacro
To use the key_press onevent for F1 + control key, you need to set the key_press "modifier" parameter to "2". So your first line will look like:
OnEvent>Key_Down,VK119,2,MainMacro