Jump to content

need help: mouseclick


Recommended Posts

I have made mouseclick'ss now and I only need to know how I can stop it and how I can make the mouseclick bot never stop...

-please help

-don't delete message... I am New in Autoit.

Link to comment
Share on other sites

  • Developers

I have made mouseclick'ss now and I only need to know how I can stop it and how I can make the mouseclick bot never stop...

-please help

-don't delete message... I am New in Autoit.

Mouse click bot ? ... :)

You did read the forum rules during you short break we gave you ...right?

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

just give me a mouseclick stop code please.

Ok, last for the last time since this is heading down the same road as the previous thread.

Post the code you have that is giving problems or stay away. Hope this is clear enough for you.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

I mean that I need to now how I can stop the mouseclicking by clicking on my keyboard

ex:

Mouseclick("left", 418, 312)

Mouseclick("left", 485, 312)

Mouseclick("left", 448, 312) and if I hit the F8 button then it will stop.

Mouseclick("left", 484, 312)

Mouseclick("left", 485, 312)

I need To now how to make that code becuz I dont remember how I only remember somthing like this ("{F8}"), "end"

Link to comment
Share on other sites

ADVICES

next time use autoit tags when post some code.

Another thing. post a FULL WORKING CODE next time, stop being lazy if you really want to recive help from us... it seems that you do the minimun effort. If you want we help to you, be nice and make an effort when you post something and try to avoid those unnecessarily and useless posts. you should post the code in the FIRST POST and we dont have to ask to you anything. it`s annoying for us make questions and guessing your trouble.

do a hotkey pointing to a function exit or pause

HotKeySet("{F8}", "_pause") ; "F8"
Global $pause
While True
    MouseClick("left", 418, 312)
    MouseClick("left", 485, 312)
    MouseClick("left", 448, 312)
    MouseClick("left", 484, 312)
    MouseClick("left", 485, 312)
WEnd
Func _pause()
    $pause = Not $pause
    While $pause
        Sleep(500)
    WEnd
EndFunc   ;==>_pause

EDITED; Some misspeled and more words

Edited by monoscout999
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...