Jump to content

Recommended Posts

Posted

i cant speak english very well but ill work to tell my problem.

firstime im using autoit i want to learn this aplication.

firsty i began Send Command but its not working

Send ("Z") but not working ...

for examlpe i m openig notpad but not not writing Z when this script run.

and how can i make this script ? i dont want close this script everytime working when i dont want will be close..

it muss always click "Z" on windows....???

Posted

Game Guard?

İs it all 8)

i may write 8:) enughf this

:D ))))

but this is little hep valauter :D ))

code please

:=)))))

8)

Posted

i cant speak english very well but ill work to tell my problem.

firstime im using autoit i want to learn this aplication.

firsty i began Send Command but its not working

Send ("Z") but not working ...

for examlpe i m openig notpad but not not writing Z when this script run.

and how can i make this script ? i dont want close this script everytime working when i dont want will be close..

it muss always click "Z" on windows....???

You should wait notepad being active before sending a keystroke, search in the help file for WinWaitActive
Posted

If I got it right this is what you want..

taken from helpfile;

Run("notepad.exe")
WinWaitActive("Untitled - Notepad")
Send("This is some text.")
WinClose("Untitled - Notepad")
WinWaitActive("Notepad", "Do you want to save")
Send("!n")
Posted

Offff i wish i know good english

i will tell again

1. Step send A

2. step : send B

3. Step : send C

4. Step : mouse left click

then 4.step muss run 1.step always

Posted (edited)

Offff i wish i know good english

i will tell again

1. Step send A

2. step : send B

3. Step : send C

4. Step : mouse left click

then 4.step muss run 1.step always

If your using it for a game then I probably wont work.

Most games these days got gameguard or some other anticheat system.

Anyways, here is the code for what you requested now..

HotKeySet("{ESC}","_exit") ; ESC to exit.

While 1
sleep(30)
    Send("{a}")
    Send("{b}")
    Send("{c}")
    Send("{d}")
    MouseClick("left",100,100)
    
WEnd

Func _exit()
Exit
EndFunc
Edited by Zisly
Posted

Game Guard?

İs it all 8)

i may write 8:) enughf this

:D ))))

but this is little hep valauter :D ))

code please

:=)))))

8)

but this is little hep valauter ;) ))

... lol, I went by the Topic Name... "Little Help"

8)

NEWHeader1.png

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...