Re: [flexcoders] loading mxml components based on flashvars

2007-06-05 Thread Brendan Meutzner
Try component1 != null component1 != Also, if you set component1 = '' when you're defining it, you'd only need to test for != '' inside the openWin function... Brendan On 6/4/07, Rohan Pinto [EMAIL PROTECTED] wrote: Hi Folks, I'm passing component ID's into my app using flashvars. in

[flexcoders] loading mxml components based on flashvars

2007-06-04 Thread Rohan Pinto
Hi Folks, I'm passing component ID's into my app using flashvars. in my main Application, I procure the values as follows: [Bindable] public var component1:String; [Bindable] public var component2:String; component1=this.parameters.component1; component2=this.parameters.component2;

RE: [flexcoders] loading mxml components based on flashvars

2007-06-04 Thread Alex Harui
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rohan Pinto Sent: Monday, June 04, 2007 8:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] loading mxml components based on flashvars Hi Folks, I'm passing component ID's into my app using flashvars. in my main Application, I procure