Re: [flexcoders] Disable Clicks while on busyCursor

2007-06-01 Thread Bjorn Schultheiss
Of Troy Gilbert Sent: Thursday, May 31, 2007 10:19 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Disable Clicks while on busyCursor Is it just me, or is it a bit surprising that we've got to hack something together to handle this? Come on, Adobe... what's a proper solution (and why

Re: [flexcoders] Disable Clicks while on busyCursor

2007-06-01 Thread robert was
What about Cairngorm or another architectural solutions. If user actions trigger interactions with server they may be disabled via event manager. -- Robert

Re: [flexcoders] Disable Clicks while on busyCursor

2007-05-31 Thread Bjorn Schultheiss
I'm looking over this problem again It seems with the previous suggestions i've run into a couple of problems. - How about stage.mouseChildren = false ? stage or Application.application don't seem to work, as in disabling the entire displayList()... - Enable/disable a transparent

Re: [flexcoders] Disable Clicks while on busyCursor

2007-05-31 Thread Anthony Lee
- Make all your active components register themselves then loop through and disable/enable them according to your busy state Too taxing on cpu... How many components are we talking about? Hack #3 Generate an Alert and position it outside the viewable area. They're modal by default... meaning

Re: [flexcoders] Disable Clicks while on busyCursor

2007-05-31 Thread Troy Gilbert
Is it just me, or is it a bit surprising that we've got to hack something together to handle this? Come on, Adobe... what's a proper solution (and why wasn't it built into the CursorManager!)? I've got enough asynchronous problems to deal with than have to worry that the user's going to go off

RE: [flexcoders] Disable Clicks while on busyCursor

2007-05-31 Thread Alex Harui
Did you try Application.application.enabled = false? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert Sent: Thursday, May 31, 2007 10:19 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Disable Clicks while

Re: [flexcoders] Disable Clicks while on busyCursor

2007-03-05 Thread iiley
Hi, How about stage.mouseChildren = false ? 04 Mar 2007 22:23:12 -0800, Bjorn Schultheiss [EMAIL PROTECTED] : Hey, Is there a way to disable all mouse clicks while CursorManager is set to busyCursor? Regards, Bjorn -- iiley AsWing http://www.aswing.org Personal

Re: [flexcoders] Disable Clicks while on busyCursor

2007-03-05 Thread Anthony Lee
The obvious solutions would be: 1) Enable/disable a transparent button that's as big as the stage and has the greatest z depth / lowest childIndex 2) Make all your active components register themselves then loop through and disable/enable them according to your busy state I'm sure there are