Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-04 Thread Richard Rodseth
t wait until it is complete before setting > properties. Flashvars are ready by creationComplete. > > > > Tracy > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Richard Rodseth > *S

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-04 Thread Tracy Spratt
to:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, March 04, 2009 4:11 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Passing params (flashvars) to sub-applications Thanks for the clarification - most helpful. When I use SWFObject in HTML, I don't append the pa

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-04 Thread Richard Rodseth
, because the lifecycle events do not come > into play, but is limited because you have to use strings. > > > > Exactly what is your goal? > > > > Tracy > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogr

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-04 Thread Tracy Spratt
ers@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, March 04, 2009 1:05 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Passing params (flashvars) to sub-applications Well, this is research and I'm trying all possibilities, bu

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
rking, that the embedded app is ready > > when the host app attempts to communicate with it. > > > > > > > > Tracy > > > > > > > > _ > > > > From: flexcoders@yahoogroups.com [mailto: > flexcoders@yahoogroups.com ] On > >

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Tracy Spratt
...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Tuesday, March 03, 2009 8:09 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Passing params (flashvars) to sub-applications Yes, that's what Amy's example does, and since I do control both apps, it seems that's prob

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
flexcoders@yahoogroups.com ] On > > Behalf Of Richard Rodseth > > Sent: Tuesday, March 03, 2009 6:42 PM > > To: flexcoders@yahoogroups.com > > Subject: Re: [flexcoders] Re: Passing params (flashvars) to > sub-applications > > > > > > > > I just did a quic

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Tracy Spratt
: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Passing params (flashvars) to sub-applications I just did a quick trace test, and the messages were written to the console in the following order: 1) SWFLoader load complete (registers listener for app complete) 2) embedded application creation

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Alex Harui
/> Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Tuesday, March 03, 2009 4:14 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Passing params (flashvars) to sub-applications No, Event.INIT

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
; > >> > > >> > > >> > > >> Alex Harui > > >> > > >> Flex SDK Developer > > >> > > >> Adobe Systems Inc. <http://www.adobe.com/> > > > >> > > >> Blog: http://blogs.adobe.com/aharui &g

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
ders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On >> Behalf Of *Richard Rodseth >> *Sent:* Tuesday, March 03, 2009 10:47 AM >> *To:* flexcoders@yahoogroups.com >> *Subject:* Re: [flexcoders] Re: Passing params (flashvars) to >> sub-applications >>

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Richard Rodseth > *Sent:* Tuesday, March 03, 2009 10:47 AM > *To:* flexcoders@yahoogroups.com > *Subject:* Re:

RE: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Alex Harui
Of Richard Rodseth Sent: Tuesday, March 03, 2009 10:47 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Passing params (flashvars) to sub-applications Thanks for the example, Amy. I was able to do this (on application complete in the host):

Re: [flexcoders] Re: Passing params (flashvars) to sub-applications

2009-03-03 Thread Richard Rodseth
Thanks for the example, Amy. I was able to do this (on application complete in the host): loadedApp = event.target.application as Application; loadedApp["configid"] = "Default"; and see the value in the loaded application. p