On Mon, Jan 25, 2010 at 2:27 AM, Tracy Spratt <[email protected]> wrote:
>
>
> There are several ways to do this. I usually use javascript in the html
> wrapper to split the url params in to an array:
>
> var _sPassedUrlParms = new String(document.location).split('?')[1]; //Get
> any passed-in querystring parms
>
> then, I pass that into the Flex app using flashvars:
>
>
> Thanks a lot - I've found the relevant docs for these tools and will
experiment. As you mention there are several ways to go about it, can you
suggest one that lets me keep the code inside Flex? Or is that a lot more
trouble than it's worth for some reason? From comments on the livedocs
http://livedocs.adobe.com/flex/3/html/help.html?content=passingarguments_3.html
it sounds like perhaps I should be looking at Application or stage ?