On 1/28/06, Deepa Subramaniam <[EMAIL PROTECTED]> wrote:
> Try using PopUpManager.popUpWindow() which takes the window to pop up. After 
> you create the window object to pop up, set its width and height to the 
> parent application's width and height and then call popUpWindow().
>
> Something like:
>
> private function pop():void
> {
>    var win:IFlexDisplayObject = new test();
>    win.width = this.width;
>    win.height = this.height;
>    PopUpManager.popUpWindow(win, this);
> }

Even createPopUp returns a reference to the window object, whose width
and height can be set.


--
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