dazzyreil 0 Posted June 23, 2010 I havent used Autoit in years, but now I tried so make a very simple script... $1 = InputBox( "Clicker", "How many seconds?") $2 = $1 x 1000 Sleep($2) MouseClick("left") MsgBox ( 0, "Clicker", "DONE!!") Cant figure out how to work it, that the imput gets multiplied x 1000 ... I know... i should know this Thanks in advance Share this post Link to post Share on other sites
l3ill 70 Posted June 23, 2010 $1 = InputBox( "Clicker", "How many seconds?") $2 = $1 * 1000 ;Sleep($2) ;MouseClick("left") ??dont know what this is for MsgBox ( 0, "Clicker", $1 & "x" & "1000 =" & $2) Welcome back ;-) My Contributions...SnippetBrowserNewSciTEPathFinderText File ManipulationFTP Connection Tester / INI File - Read, Write, Save & Load Example Share this post Link to post Share on other sites