Jump to content

Recommended Posts

Posted

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

Posted

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?
Posted (edited)

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

Posted (edited)

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.

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