Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-02 Thread Rick Root
Tim Hoff wrote: > > Do you still have this line. > > var popUpParent:DisplayObject; > > If so, then wtf. Yup, I sure do. And yeah, wtf? I solved the problem by eliminating the reference to popUpParent entirely and just put Application.application.mainPanel where it was used in the code. ri

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-02 Thread Rick Root
Tim, I made all your suggested changes but I still get a compiler error on this line: popUpParent = Application.application.mainPanel; The error is: "Access of undefined property popUpParent." I don't get it, because I'm not actually accessing a property of popUpParent... Rick --

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-02 Thread Rick Root
Tim Hoff wrote: > > > If you want, go ahead and post what your code currently looks like, > and we'll get you fixed up. It's probably just a minor syntax issue. tim, you can view the code here... I won't paste it in because that kinda stuff never shows up well in mailing lists =) https://www.i

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Rick Root
Tim Hoff wrote: > > Make sure that you consider the scope of you primary UI component. > Depending on where you are calling the code from, you may have to > reference it like parentDocument.mainPanel or > Application.application.mainPanel (this one requires - import > mx.core.Application). I don'

RE: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Dimitrios Gianninas
AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window I'm liking Jesse 'JW' Wardens's suggestion.  (If you had a dollar for everyone that noticed that, eh?)  But I've been playing with this.  I set a bool flag in my

RE: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Franck de Bruijn
: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window   - Original Message - From: "JesterXL" <[EMAIL PROTECTED]n.com> To: <[EMAIL PROTECTED]ups.com> Sent: Tuesday, August 01, 2006 2:26 AM Subject:

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Douglas Knudsen
removes it and replaces it with a label of "Please wait...".   - Original Message - From: Douglas Knudsen To: flexcoders@yahoogroups.com Sent: Tuesday, August 01, 2006 9:00 AM Subject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window I'm li

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread JesterXL
t: Tuesday, August 01, 2006 9:00 AM Subject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window I'm liking Jesse 'JW' Wardens's suggestion.  (If you had a dollar for everyone that noticed that, eh?)  But I've been playing with this.  I set a boo

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Douglas Knudsen
I'm liking Jesse 'JW' Wardens's suggestion.  (If you had a dollar for everyone that noticed that, eh?)  But I've been playing with this.  I set a bool flag in my model called inProgress.  When a command runs its execute() method, I set inProgress = true.  in the onresult() and onfault() I set in

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Rick Root
gotgoose09 wrote: > > You could use showBusyCursor="true" on your RemoteObject, that's what > I do. That actually works great. Combined with disabling/enabling the entire panel, it does just what I want. Though I'd still like to get the popup title window with the progress bar working... Ric

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Rick Root
Tim Hoff wrote: > > Here's some code if you're interested: > > http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectID=448 > > Tim, thanks.. I'm trying to use that code but having a problem with

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-08-01 Thread Paul Andrews
- Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: Sent: Tuesday, August 01, 2006 4:35 AM Subject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window > Depends. The spinning watch is what we use 100% of the time; that's the

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-07-31 Thread JesterXL
age - From: "Paul Andrews" <[EMAIL PROTECTED]> To: Sent: Monday, July 31, 2006 11:06 PM Subject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window - Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: Sent: Tuesday, Au

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-07-31 Thread Paul Andrews
- Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: Sent: Tuesday, August 01, 2006 2:26 AM Subject: Re: [flexcoders] Re: Simple way to do "Please wait..." type window > One way I did it was making a Singleton class that popups up a small > Titl

Re: [flexcoders] Re: Simple way to do "Please wait..." type window

2006-07-31 Thread JesterXL
One way I did it was making a Singleton class that popups up a small TitleWindow. This TitleWindow has a ProgressBar in it. The ProgressBar's indeterminate is bound to the visibility (you don't want it playing while the window is invisible; takes up resources). You can then do: WaitWindow.sh