OpenDCL Forums

OpenDCL => Studio/Dialog Editor => Topic started by: Jim Short on April 02, 2016, 07:57:24 AM

Title: OpenDCL for 2004 vs 2010 and BricsV15
Post by: Jim Short on April 02, 2016, 07:57:24 AM
My app has a docked bar with a slider that changes a lisp var controlling the speed of an animation running in lisp. OpenDCL running in Acad2k4 will allow the slider to be moved while animation is in progress.
Event Evoke = (0) Synchronous. If Asynchronous it does not.

ObjectDCL Event Evoke = (0) Keep Focus in Acad2k4 also allowed changing animation speed.

Testing same in Acad2010 or BricsCAD V15 does not allow interrupt as is possible in Acad2k4.

Is this working as expected on later versions? Is there a way to achieve the same affect?

Thanks,
Jim

Title: Re: OpenDCL for 2004 vs 2010 and BricsV15
Post by: owenwengerd on April 02, 2016, 06:30:37 PM
Is your control bar's Keep Focus property enabled? It sounds like you have an OnScroll event handler for the slider, but a better design might be to eliminate the OnScroll event and just read the slider's current value from your lisp code at the point where it's needed.
Title: Re: OpenDCL for 2004 vs 2010 and BricsV15
Post by: Jim Short on April 07, 2016, 08:55:53 AM
Control keep focus=true
ReleaseCapture Event=checked
Title: Re: OpenDCL for 2004 vs 2010 and BricsV15
Post by: owenwengerd on April 09, 2016, 08:59:15 AM
Handling ReleaseCapture is risky, as the event is executing while the system is transitioning from an unusual state. I would consider eliminating the event and just querying the slider value when needed.
Title: Re: OpenDCL for 2004 vs 2010 and BricsV15
Post by: Jim Short on May 17, 2016, 05:27:16 PM
I am still looking into this. The modeless window with slider can not get focus while the lisp animation expression is evaluating. I tried this while inside a simple lisp expression and I had access to the slider. Is it possible that the animation is too deeply nested?
Jim