BlueScreen Posted August 9, 2004 Posted August 9, 2004 Can 2 Adlib functions run together? If so, can I disable a selected Adlib by using AdlibDisable? 10x
Developers Jos Posted August 9, 2004 Developers Posted August 9, 2004 (edited) Can 2 Adlib functions run together? If so, can I disable a selected Adlib by using AdlibDisable? 10x <{POST_SNAPBACK}>Nope ...one adlib at a time.... Edited August 9, 2004 by JdeB SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Administrators Jon Posted August 9, 2004 Administrators Posted August 9, 2004 AdlibEnable("MainAdlib") ... ... Func MainAdlib() Adlib1() Adlib2() Adlib3() EndFunc Func Adlib1() ; Do something EndFunc Func Adlib2() ; Do something EndFunc Func Adlib3() ; Do something EndFunc Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
BlueScreen Posted August 9, 2004 Author Posted August 9, 2004 Is there a way to know if an adlib function is running/enabled?
Valik Posted August 9, 2004 Posted August 9, 2004 Is there a way to know if an adlib function is running/enabled? <{POST_SNAPBACK}>That's sort of a compile time thing you should really know... at compile time, meaning you shouldn't need to query for it at run-time.
BlueScreen Posted August 9, 2004 Author Posted August 9, 2004 (edited) I see, but, I wanted it in order to overcome this issue:While 1 AdlibEnable ("Func1", 30000) Sleep (10000) Func2() WEnd Func 2 () Msgbox (0,"","Hello") EndFunc In this case, Func1 will never execute, since the Adlib timer is being "Recharge". I can overcome this by adding some code, though... Edited August 9, 2004 by BlueScreen
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