Jump to content

repeating a function


Recommended Posts

I searched the help file what I found I wasn't sure if its what I'm looking for

if anyone can help me with this simple bit of code I'd be thankful!

HotKeySet("{NUMPAD5}", "Go")
While 1
    Sleep(50)
WEnd

func Go()
MouseClick("left",729,487,1)
sleep(3000)
mouseclick("left",515,293,3)
sleep(15000)
EndFunc

I want my program to repeat func Go() after sleeping 15000 until I stop it my self

Link to comment
Share on other sites

I searched the help file what I found I wasn't sure if its what I'm looking for

if anyone can help me with this simple bit of code I'd be thankful!

HotKeySet("{NUMPAD5}", "Go")
While 1
    Sleep(50)
WEnd

func Go()
MouseClick("left",729,487,1)
sleep(3000)
mouseclick("left",515,293,3)
sleep(15000)
EndFunc

I want my program to repeat func Go() after sleeping 15000 until I stop it my self

Why not include a call of Go() inside a loop?
Link to comment
Share on other sites

I searched the help file what I found I wasn't sure if its what I'm looking for

if anyone can help me with this simple bit of code I'd be thankful!

HotKeySet("{NUMPAD5}", "Go")
HotKeySet("{NUMPAD6}", "stop")
While 1
    Sleep(50)
WEnd

func Go()
while 1
MouseClick("left",729,487,1)
sleep(3000)
mouseclick("left",515,293,3)
sleep(15000)
wend
EndFunc

func stop()
exit
EndFunc

I want my program to repeat func Go() after sleeping 15000 until I stop it my self

easy peasy lemon squeezy

Edit: notice I changed your code in the quote.

Edited by youknowwho4eva

Giggity

Link to comment
Share on other sites

Removed because I hadn't realized I was repeating what youknowwho4eva had already suggested.

Edited by martin
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
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...