Jump to content

[Question] AdlibRegister


Recommended Posts

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?

Link to comment
Share on other sites

  • Moderators

Warmonger,

Questions simple

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

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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

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