mattschinkel 0 Posted September 14, 2010 I have written a program in autoit with on event mode. My program is randomly locking up maybe once a week. If I press any buttons within my program, It does nothing. With on event mode, this should not happen at all right? Is there any bug on this issue? Opt("GUIOnEventMode", 1) ; use on event mode. Thanks, Matt. Share this post Link to post Share on other sites
Country73 6 Posted September 14, 2010 Little difficult to troubleshoot when we have no idea what your code is doing. No idea if you have a problem with one of the events called, etc... If you try to fail and succeed which have you done?AutoIt Forum Search Share this post Link to post Share on other sites
MvGulik 86 Posted September 14, 2010 (edited) Yep. But its undocumented. It seems to act up on occasions when its used with user code that has some logical errors in them. Edited September 14, 2010 by MvGulik "Straight_and_Crooked_Thinking" : A "classic guide to ferreting out untruths, half-truths, and other distortions of facts in political and social discussions.""The Secrets of Quantum Physics" : New and excellent 2 part documentary on Quantum Physics by Jim Al-Khalili. (Dec 2014)"Believing what you know ain't so" ...Knock Knock ... Share this post Link to post Share on other sites
Tvern 11 Posted September 14, 2010 With on event mode, this should not happen at all right?In event mode a script can still become unresponsive if it gets stuck in a function that is triggered by an event and doesn't return. Share this post Link to post Share on other sites