RE: [WAR] Software Broadcasting Script
Quote:
Originally Posted by 'Lokked',index.php?page=Thread&postID=106765#post1 06765
AutoHotkey has a very undesirable disadvantage, so I won't bother posting a script with it. Its only use is to reliably rename the WAR windows, for use in HKN.
How come you don't use HotkeyNet for renaming?
Quote:
Originally Posted by 'Lokked',index.php?page=Thread&postID=106765#post1 06765
<Hotkey 1>
<TargetWin war2>
<SetActiveWin>
<SendFocusWin>
<Key 1>
This is the most reliable script, and fairly fast.
Here's a simpler way to write that hotkey:
Code:
<Hotkey 1> // EQUIVALENT OF HOTKEY QUOTED ABOVE
<SendWin war2>
<Key 1>
Or even simpler (assuming you defined a label earlier in the script):
Code:
<BroadcastKey 1> // EQUIVALENT OF HOTKEY QUOTED ABOVE
<SendLabel WAR2>
Quote:
The function used to send input here is under testing. This script is the fastest, but causes very odd graphical anomolies for a couple milliseconds while the keys are being processed. I'm sure it can be worked out in the future.
As you know, SendWinX is a new experimental feature. When I get into the WAR beta I'll take a look at the black-screen problem. Thanks for letting me know about it.