BlueScreen 0 Posted August 9, 2004 Can 2 Adlib functions run together? If so, can I disable a selected Adlib by using AdlibDisable? 10x Share this post Link to post Share on other sites
Jos 2,172 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. Share this post Link to post Share on other sites
Jon 1,009 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/ Share this post Link to post Share on other sites
BlueScreen 0 Posted August 9, 2004 Is there a way to know if an adlib function is running/enabled? Share this post Link to post Share on other sites
Valik 478 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. Share this post Link to post Share on other sites
BlueScreen 0 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 Share this post Link to post Share on other sites