Opened 14 years ago
Closed 13 years ago
#1907 closed Bug (Duplicate)
Bug in AdlibRegister
Reported by: | claudio.veronesi@… | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.3.6.1 | Severity: | None |
Keywords: | Cc: |
Description
I think, there is a bug in AdlibRegister.
I Register a function for every 5 seconds.
The duration of this function is 4 seconds. At the beginning, I Unregister the Adlib Timer. At the end, I register it again with 5 seconds.
But then only one second later, this function is called again!
{{{{
AdlibRegister("test", 5000)
HotKeySet("{ESC}")
While 1
Sleep(5000)
WEnd
Exit
Func test()
AdlibUnRegister("test")
ToolTip("Function")
Sleep(4000)
ToolTip("")
AdlibRegister("test", 5000)
Return 1
EndFunc ;==>test
}}}}
Attachments (0)
Change History (2)
comment:1 Changed 14 years ago by mvg
comment:2 Changed 13 years ago by Jon
- Resolution set to Duplicate
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Think your right.
Might already be solved with/by #1633 (Milestone: 3.3.7.0)
Output on code below ... (comment).