﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1960	AdlibRegister - Parameter to call function instantly	anonymous		"{{{
AdlibRegister(""MyFunction"", 60000)
}}}

This will call 'MyFunction' the first time after 60 Seconds and each 60 seconds again. What I'm missing is a parameter in AdlibRegister to call the specified function immidiately (and all 60 seconds).

Code like

{{{
MyFunction()
AdlibRegister(""MyFunction"", 60000)
}}}

will fix this, but for me who uses AdlibRegister quite often it is annoying and makes a longer sourcecode confusing.

Of course it is easy to write an UDF:

{{{
Func _AdlibRegister($_FuncName, $_WaitTime = 250, $_InstantCall = False)
If $_InstantCall = True Then Call($_FuncName)
AdlibRegister($_FuncName, WaitTime)
EndFunc
}}}

but then the Obfuscator will give an error due to the Call-function."	Feature Request	closed		AutoIt		None	Rejected		m.segelken@…
