CT83 Posted December 9, 2016 Posted December 9, 2016 I have a text field in my scripts gui which displays the current runtime. I usually update it using a function, in the script, but i was wondering if there is any other way to keep the Runtime running without having to call the runtime function again and again and while my script is carrying out something else and running other functions. I mean autoit does'nt support multithreading does it?
j0kky Posted December 9, 2016 Posted December 9, 2016 (edited) No, but you can register an AdLibRegister function which can start automatically, and when it ends, your script continues its job. EDIT: also, there is another interesting function that uses callback: _Timer_SetTimer Edited December 9, 2016 by j0kky Spoiler Some UDFs I created: Winsock UDF STUN UDF WinApi_GetAdaptersAddresses _WinApi_GetLogicalProcessorInformation Bitwise with 64 bit integers An useful collection of zipping file UDFs
CT83 Posted December 9, 2016 Author Posted December 9, 2016 1 hour ago, j0kky said: No, but you can register an AdLibRegister function which can start automatically, and when it ends, your script continues its job. Exaclty what i needed! Thanks!
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