Warmonger Posted May 22, 2011 Posted May 22, 2011 Questions simple. If I register two AdlibRegister's in my script. Lets say the first one for 5 minutes and the second one for 10 minutes. When the fist AdlibRegister runs its second run it will be at the same time as the 10 minute AdlibRegister. Now my question is, will it only run the first AdlibRegister to trigger, or will it run them back-to-back until they both are done? [AutoIt File Patcher]
JohnOne Posted May 22, 2011 Posted May 22, 2011 Autoit3 cannot run any two things at the same time. One of them is registered first I expect that will run, then the other. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Warmonger Posted May 22, 2011 Author Posted May 22, 2011 Autoit3 cannot run any two things at the same time.One of them is registered first I expect that will run, then the other.No one said anything about at the same time, autoit is not multi-threaded. [AutoIt File Patcher]
Moderators Melba23 Posted May 22, 2011 Moderators Posted May 22, 2011 Warmonger, Questions simpleDid you think to write a small script to find out the answer for yourself? AdlibRegister("Five", 5000) AdlibRegister("Ten", 10000) HotKeySet("{ESC}", "On_Exit") While 1 Sleep(10) WEnd Func Five() ConsoleWrite("5 @ " & @SEC & @CRLF) EndFunc Func Ten() ConsoleWrite("10 @ " & @SEC & @CRLF) EndFunc Func On_Exit() Exit EndFunc As you can see, you get the Adlibs run one after the other - and before you ask, the order of registering does not seem to affect the order in which they are run. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Warmonger Posted May 22, 2011 Author Posted May 22, 2011 (edited) Warmonger, Did you think to write a small script to find out the answer for yourself? AdlibRegister("Five", 5000) AdlibRegister("Ten", 10000) HotKeySet("{ESC}", "On_Exit") While 1 Sleep(10) WEnd Func Five() ConsoleWrite("5 @ " & @SEC & @CRLF) EndFunc Func Ten() ConsoleWrite("10 @ " & @SEC & @CRLF) EndFunc Func On_Exit() Exit EndFunc As you can see, you get the Adlibs run one after the other - and before you ask, the order of registering does not seem to affect the order in which they are run. M23 True, i've been very busy in Visual Studio so not much time to code. I just want to make sure a previous script I released was fine. Thanks. Edited May 22, 2011 by Warmonger [AutoIt File Patcher]
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now