Jump to content

Recommended Posts

Posted

Hello,

I try to use AutoIt for the first time ... I know C language, and I try to do a script mouse. When I press the right mouse the script must reproduce the 64 clicks.

I try with this ....

While(1){

if (_IsPressed(02){

for(i=0; i<=64; i++{

MouseClick("right")

}

}

}WEnd

Posted

Look at the tutorials and the help file for AutoIt, because the syntax of that "script" is totally wrong.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Posted

This is a BASIC style language. Not a C style language. Help file is your friend.

While this one *is* true ... a more helpful topic would be in order to get you more positive attention.

Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache

Posted

There's a difference between incompetance and laziness, read the help file, learn how the language you're using works, then you will see how easy it is to work with it.

Hint: For...Next loop

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Posted

MouseClick("right",,64,5)

how can set the currnet position :S ?

[optional] The x/y coordinates to move the mouse to. If no x and y coords are given, the current position is used (default).

i dn't set it but dn't work

Posted (edited)

i try with this --> dn't work

#Include <Misc.au3>

While 1

If _IsPressed("02") Then

Do

Local $pos = MouseGetPos()

MouseClick("right",$pos[0],$pos1[1],5,5)

Until not _IsPressed("02")

EndIf

WEnd

Edited by dossantosfranz
Posted

now work with this

#Include <Misc.au3>

Global $Paused = 0

HotKeySet("{CAPSLOCK}", "TogglePause")

HotKeySet("{ESC}", "Terminate")

While 1

If _IsPressed("01") Then

Do

Local $mpos = MouseGetPos()

;$mpos[0] = x, $mpos[1] = y

MouseClick("left",$mpos[0],$mpos[1],5)

Until not _IsPressed("02")

EndIf

WEnd

Func TogglePause()

$Paused = Not $Paused

While $Paused

Sleep (10)

WEnd

EndFunc

Func Terminate()

Exit

EndFunc

i test to do a pause in this script :S

Posted

Please learn how to use the forum. Believe it or not, there's a quote feature (!!!). It works a hell of a lot better than copying the poster's name and leaving it as a link and bold text which you don't bother to correct. Thus you look like an obnoxious ignoramus.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...