2009-10-01, 02:59 AM
Well, websearching (I will no longer say "Googling") for Autoit info was a million times more effective than trying to use the website/official resources... eventually I ended up with something like this:
Still I think if we're going to get people using Autoit with SoM. We shouldn't try to teach them to fish so to speak... let them figure that out on their own if they decide it's worth it. We should just make executable scripts and upload them to the website like anything else for people to use (and make them as easy as possible to use at that)
Code:
#RequireAdmin
Global $Banging = 0
Func bang()
$Banging = 1
Send("{ESC}"); //get out of alt situation
Send("{3}")
EndFunc
Func halt()
$Banging = 0
Send("{ESC}"); //get out of alt situation
EndFunc
HotKeySet("!{3}","bang")
HotKeySet("!{ESC}","halt")
While 1
If $Banging = 1 Then
Send("{3}")
EndIf
Sleep(50)
Wend
Still I think if we're going to get people using Autoit with SoM. We shouldn't try to teach them to fish so to speak... let them figure that out on their own if they decide it's worth it. We should just make executable scripts and upload them to the website like anything else for people to use (and make them as easy as possible to use at that)