Re: [flexcoders] Popup Window

2009-09-15 Thread abhijit chore
Hi, You can use Application.application.width Application.application.height to set the width and height so that toolbar will be visible to click close button. Regards, Abhijit On Tue, Sep 15, 2009 at 5:41 PM, smyrin smy...@yahoo.com wrote: I have noticed a problem with pop up windows

RE: [flexcoders] Popup window close button fails

2009-05-06 Thread Tracy Spratt
It is not automatic. The button just dispatches the close event. You need to define a close event handler. And in that do PopUpmanager.removePopUp(this). Though more often, I just dispatch a custom named event, and have in a listener/handler in the component that created the popup, and in

Re: [flexcoders] Popup window close button fails

2009-05-06 Thread Tom McNeer
Hi Tracy, Thanks for the explanation. I knew the close event was fired. But I guess I thought the default close event also called the PopUpManager. Maybe it's me, but I think the Lang Ref could be a little clearer about this. Thanks for straightening me out, anyway. -- Thanks, Tom Tom

RE: [flexcoders] Popup window stays open with history management enabled

2008-12-05 Thread Alex Harui
I would use BrowserManager and clear the popup on the url changes From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erich Cervantez Sent: Friday, December 05, 2008 11:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Popup window stays open with history management

Re: [flexcoders] popup window

2008-07-31 Thread Dan Vega
, 2008 9:04 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] popup window I understand the width as a percentage but in as3 you can't do that because its looking for a number. If i do var text:Text = new Text(); text.width = 100%; I get an error. Is there a way

Re: [flexcoders] popup window

2008-07-30 Thread Sid Maskit
Two things. First, a label can only display a single line. If you want multiline text, you should use a Text component. Second, Text components automatically wrap if, and only if, they have their width set. I believe you can set it to a percentage, and it will still wrap, but you have to set it

Re: [flexcoders] popup window

2008-07-30 Thread Dan Vega
I understand the width as a percentage but in as3 you can't do that because its looking for a number. If i do var text:Text = new Text(); text.width = 100%; I get an error. Is there a way to figure out available space? On Wed, Jul 30, 2008 at 11:55 PM, Sid Maskit [EMAIL PROTECTED] wrote:

RE: [flexcoders] popup window

2008-07-30 Thread Alex Harui
text.percentWidth=100 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Vega Sent: Wednesday, July 30, 2008 9:04 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] popup window I understand the width as a percentage

RE: [flexcoders] popup window with custom component ( not extending TitleWindow )

2005-02-22 Thread Erik Westra
WineDetail.mxml There is no property with the name 'PopUpDetail' The class PopUpDetail, is it in the same folder as WineDetail? Is the class PopUpDetail in the same folder as the .mxml file with the application tag in it? If not, add this line to your script (at the TOP): import