Thanks Jester,

  Have you ever seen anyone having to do this and what does thier code
look like? Dan 


--- In [email protected], "JesterXL" <[EMAIL PROTECTED]> wrote:
>
> No, you can't set the name of a popup window; PopUpManager does that.
> 
> Instead, store a reference.
> 
> private var popups:Object;
> 
> function initApp()
> {
>     popups = {};
> }
> 
> function showWindow(modal) {
> uniqueID++;
>     var popup = mx.managers.PopUpManager.createPopUp(
>     _root, 
>     testWindowPopup, 
>     modal, {deferred: true});
>     if(popups[uniqueID] != null)
>     {
>         popups[uniqueID].deletePopUp();
>     }
>     popups[uniqueID] = popup;
>     debugTxt.text = popup;
>  }
> 
> ----- Original Message ----- 
> From: "Dan Plesse" <[EMAIL PROTECTED]>
> To: <[email protected]>
> Sent: Sunday, January 29, 2006 3:14 PM
> Subject: [flexcoders] Re: Gtalk windows question
> 
> 
> Thanks I added your code to a PopUpManager.createPopUp()
> 
> function showWindow(modal) {
> uniqueID++;
>     var popup = mx.managers.PopUpManager.createPopUp(
>     _root, 
>     testWindowPopup, 
>     modal, {deferred: true}, 
>     "win" + uniqueID);
>     debugTxt.text = popup;
>         }
> 
> Is this right? 
> 
> 
> 
> 
> 
> --- In [email protected], "JesterXL" <[EMAIL PROTECTED]> wrote:
> >
> > You can:
> > - either add a child to a ViewStack that an TabNavigator is bound to
> > - add data to the dataProvider a TabBar is bound to
> > 
> > 
> > ----- Original Message ----- 
> > From: "Dan Plesse" <[EMAIL PROTECTED]>
> > To: <[email protected]>
> > Sent: Sunday, January 29, 2006 2:20 PM
> > Subject: [flexcoders] Re: Gtalk windows question
> > 
> > 
> > wow thanks. 
> > 
> >   I was thinking windows has been done to death. Can you do this with 
> > Tabs too? Thanks a ton. Dan 
> > 
> > --- In [email protected], "JesterXL" <[EMAIL PROTECTED]> wrote:
> > >
> > > import mx.containers.TitleWindow;
> > > 
> > > private static var uniqueID:Number = 0;
> > > 
> > > function createNewWindow():TitleWindow
> > > {
> > >     uniqueID++;
> > >     var ref:TitleWindow =
> > TitleWindow(wins_canvas.createChild(TitleWindow, 
> > > "win" + uniqueID));
> > >     return ref;
> > > }
> > > 
> > > <mx:Canvas id="wins_canvas" />
> > > 
> > > You could use PopUpManager too.
> > > 
> > > Here's an AOLIM example:
> > > http://lab.zeusdesign.net/?p=6
> > > 
> > > ----- Original Message ----- 
> > > From: "Dan Plesse" <[EMAIL PROTECTED]>
> > > To: <[email protected]>
> > > Sent: Sunday, January 29, 2006 1:52 PM
> > > Subject: [flexcoders] Gtalk windows question
> > > 
> > > 
> > > Hello,
> > > 
> > >    Recently I played with googles' Gtalk jabber client and basically
> > > for each new IM session a new window is created. What I need to know
> > > in Flex or Flash is does each new window have or can have an
unique ID
> > > (I was thinking I could use the JID) and how can you check for the
> > > existence of these new windows. Also it doesn't not have to be
> > > windows, I was also thinking maybe Accordion or Tab.
> > > 
> > > Thanks Dan
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > > --
> > > Flexcoders Mailing List
> > > FAQ:
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > > Search Archives:
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > > Yahoo! Groups Links
> > >
> > 
> > 
> > 
> > 
> > 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> > Yahoo! Groups Links
> >
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to