RE: [flexcoders] Re: PopUpManager.createPopUp

2007-06-01 Thread Tracy Spratt
Subject: [flexcoders] Re: PopUpManager.createPopUp exactly.. see my demo app: http://demo.rohanpinto.com http://demo.rohanpinto.com if you click on the logo, the TileWindow opens over and over again... i want to restrict that to just one instance.. any advise.. please.. ? Rohan http

Re: [flexcoders] Re: PopUpManager.createPopUp

2007-06-01 Thread Michael Schmalle
Hi, I gave an answer to this a couple threads back. See all the threads to this post and you will see the answer. Peace, Mike On 5/31/07, Rohan Pinto [EMAIL PROTECTED] wrote: exactly.. see my demo app: http://demo.rohanpinto.com if you click on the logo, the TileWindow opens over and

[flexcoders] Re: PopUpManager.createPopUp

2007-06-01 Thread Rohan Pinto
thanks bhavan that really really helped... thanks a ton... whew !! Rohan --- In flexcoders@yahoogroups.com, Flexing... [EMAIL PROTECTED] wrote: Rohan, Its not complex. Here's a sample app which will demonstrate what I had suggested in my email:

[flexcoders] Re: PopUpManager.createPopUp

2007-06-01 Thread Rohan Pinto
I tried running the example code as is.. COPY/PASTE.. and get this error: private var tw:MyTitleWindow = new MyTitleWindow(); 1046: Type was not found or was not a compile-time constant: MyTitleWindow 1080: Call to a possibly undefined method MyTitleWindow tw = new TitleWindow(); 1080: Call to

[flexcoders] Re: PopUpManager.createPopUp

2007-06-01 Thread Rohan Pinto
Hi Mike, i did follow all threrads and tried every possible combination... I could not get it to work.. here's my index.mxml mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; autoLayout=true layout=vertical creationComplete=openWin() horizontalScrollPolicy=off

[flexcoders] Re: PopUpManager.createPopUp

2007-06-01 Thread Rohan Pinto
I got it to work using the following approach: (please let me know if i've done something stupid) index.mxml i have this function public var isOpen : Boolean = false; public function openWin():void{ if(!isOpen){

[flexcoders] Re: PopUpManager.createPopUp

2007-05-31 Thread Rohan Pinto
exactly.. see my demo app: http://demo.rohanpinto.com if you click on the logo, the TileWindow opens over and over again... i want to restrict that to just one instance.. any advise.. please.. ? Rohan http://konkan.tv --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote:

[flexcoders] Re: PopupManager.createPopUp - varying the className argument

2005-10-07 Thread fowleryj
I've also got a huge if-statement in my OpenWindowCommand, so the opportunity to decrease the lines of code in that class was appealing. I had the same thing happen (white background, then white screen) when I tried the _global suggestion, though. --- In flexcoders@yahoogroups.com, Derrick Grigg