dazzyreil Posted June 23, 2010 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 Yes I know its a repost but I just read the "Why isn't my thread getting any replies" part in the wiki
kaotkbliss Posted June 23, 2010 Posted June 23, 2010 try $1 = InputBox( "Clicker", "How many seconds?") $2 = Int($1) * 1000 Sleep($2) MouseClick("left") MsgBox ( 0, "Clicker", "DONE!!") 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy!
AdmiralAlkex Posted June 23, 2010 Posted June 23, 2010 Yes I know its a repost but I just read the "Why isn't my thread getting any replies" part in the wiki Please edit your post next time instead of double-posting, we don't like that.You edit the title from the first post, exactly like you created it in the first place (quite logical I say). .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
dazzyreil Posted June 23, 2010 Author Posted June 23, 2010 try $1 = InputBox( "Clicker", "How many seconds?") $2 = Int($1) * 1000 Sleep($2) MouseClick("left") MsgBox ( 0, "Clicker", "DONE!!") Thanks !! Please edit your post next time instead of double-posting, we don't like that. You edit the title from the first post, exactly like you created it in the first place (quite logical I say). Sorry didn't know you could also edit the title
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now