Press/Send not working?
Moderators: JRL, Dorian (MJT support)
Press/Send not working?
I'm trying to use Macro Scheduler to repeat pressing "/" in an online game that I play. It sends the "/" key fine if you have the chat box open, but as far as the hotkey goes, it doesn't work. Does anyone know how to get the key to press as a hotkey, and not as just text?
As long as a "hotkey" is the equivalent to a keyboard shortcut you've to use an additional key (standard would be "ALT" or "CTRL").
Therefore,
should work.
This sample script should handover the character "/" 10 times,
Therefore,
Code: Select all
Press ALT
Send>/
Release ALT
or
Press CTRL
Send>/
Release CTRL
This sample script should handover the character "/" 10 times,
Code: Select all
Let>numchar=10
Let>lc=0
Label>Loop
Add>lc,1
If>lc>%numchar%,End
Press ALT
Send>/
Release ALT
Goto>Loop
Label>End
Message>Done