address Posted April 20, 2008 Posted April 20, 2008 I want such thing: pointer of mouse should move in certain place, then click, then text typed, then again moved, clicked and text typed, then moved, pressed, moved, unpressed and retryed in one minute. Help please.
Swift Posted April 20, 2008 Posted April 20, 2008 I want such thing: pointer of mouse should move in certain place, then click, then text typed, then again moved, clicked and text typed, then moved, pressed, moved, unpressed and retryed in one minute. Help please.What? The only thing I got outa that was you need this:MouseClick(), or maybe even: Send()Check Out The AutoIt Helpfile...
James Posted April 20, 2008 Posted April 20, 2008 If you want to send text to a window (GUI) then take a look at ControlSend(). Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
Valuater Posted April 20, 2008 Posted April 20, 2008 Maybe....Here....http://www.autoitscript.com/forum/index.ph...ost&p=889618)
address Posted April 21, 2008 Author Posted April 21, 2008 while 1 MouseClick("left", 120, 123, 1) MouseClick("left", 913, 431, 1) Send ("{HOME}") MouseClick("left", 376, 598, 1) Send("#my script") MouseClick("left", 736, 637, 1) Dim $aWord[5] = [4, "Hello", "World", "Good", "Morning"] For $i = 1 To $aWord[0] Send($aWord[$i]) MouseClick("left", 644, 596, 1) MouseClick("left", 295, 120, 1) Next Sleep(1000 * 120) WEndI need to write Hello, make 2 mouseclicks, 2 minutes quiet, and then write next word (World) (before upper mouseclicks should be made of course). And I cannot do this whereever I put Next. Help please.
address Posted April 21, 2008 Author Posted April 21, 2008 while 1 MouseClick("left", 120, 123, 1) MouseClick("left", 913, 431, 1) Send ("{HOME}") MouseClick("left", 376, 598, 1) Send("#my script") MouseClick("left", 736, 637, 1) Dim $aWord[5] = [4, "Hello", "World", "Good", "Morning"] For $i = 1 To $aWord[0] Send($aWord[$i]) MouseClick("left", 644, 596, 1) MouseClick("left", 295, 120, 1) Next Sleep(1000 * 120) WEndI need to write Hello, make 2 mouseclicks, 2 minutes quiet, and then write next word (World) (before upper mouseclicks should be made of course). And I cannot do this whereever I put Next. Help please.
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