Monday, September 6, 2010

AutoIt - Just Overpowers You...

Well, I have come to know about a great script generator on Windows platform. Used mostly to generate externally excited events, we have interfaced Nanchuck and come up with something like a Nunchuck mouse application. We have been successful in moving the cursor… Clicking algorithm coming in a day or two. But it could not have been possible without the AutoIt.
Guys, do have a look at the AutoIt tool at www.autoitscript.com to know its awesome functionality. Well, in the general introduction and examples section, the Mouse Cursor Randomizer itself is a great little tweak you can use to frighten the hell out of your friends. It virtually inhibits the user from controlling the mouse and moves cursor randomly on the screen. You must have a look at that.
I would share the mouse.au3 script here. Paste it in your editor and see the execution.
Func exitthescript()
Exit
EndFunc
HotKeySet(“{F3}”, “exitthescript”)
While 1
$posx = Random( 1, 1000 )
$posy = Random( 1, 1000 )
MouseMove( $posx, $posy )
Sleep( 100000000000000000000000 )
WEnd
Func exitthescript() Exit EndFunc HotKeySet(“{F3}”, “exitthescript”)
While 1
$posx = Random( 1, 1000 )
$posy = Random( 1, 1000 )
MouseMove( $posx, $posy )
Sleep( 100000000000000000000000 )
WEnd

No comments:

Post a Comment