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

2009-03-04 Thread Tracy Spratt
...@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, but I suppose you could say the goal is to allow

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

2009-03-04 Thread Richard Rodseth
*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 probably the way to go. Nevertheless, I am curious, because a) there must be many apps one would like to embed that do

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

2009-03-04 Thread Tracy Spratt
...@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 parameters

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

2009-03-04 Thread Richard Rodseth
*To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Passing params (flashvars) to sub-applications Well, this is research and I'm trying all possibilities, but I suppose you could say the goal is to allow team A to embed team B's application in a tab with the minimum of disruption to either

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

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: I'm experimenting with loading sub applications using SWFLoader. I've read numerous posts about this, but for the life of me can't figure out how to pass flashvars to the sub application. In particular, the technique

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.

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

2009-03-03 Thread Alex Harui
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): loadedApp

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

2009-03-03 Thread Richard Rodseth
://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: [flexcoders] Re: Passing params (flashvars) to sub-applications Thanks

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

2009-03-03 Thread Richard Rodseth
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): loadedApp = event.target.application

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

2009-03-03 Thread Bjorn Schultheiss
: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): loadedApp

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

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

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

2009-03-03 Thread Alex Harui
://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 did not help. I

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

2009-03-03 Thread Tracy Spratt
To: 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

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

2009-03-03 Thread Bjorn Schultheiss
...@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 quick trace test, and the messages were written to the console in the following order: 1

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

2009-03-03 Thread Richard Rodseth
To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.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

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

2009-03-03 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: Thanks for the example, Amy. I was able to do this (on application complete in the host): loadedApp = event.target.application as Application;

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 probably the way

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

2009-03-03 Thread Richard Rodseth
: Tuesday, March 03, 2009 6:42 PM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.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