vote up 2 vote down star

I want to access some flashvars in my preloader to a Flex application. How is this possible?

Regards Adlertz

flag

50% accept rate

3 Answers

vote up 2 vote down check

Try the loaderInfo.parameters attribute of the preloader.

link|flag
vote up 1 vote down

From the preloader, you should be able to access the flashvars indirectly through the SystemManager as follows:

var systemManager:SystemManager = parent.parent as SystemManager;
var params:Object = LoaderInfo(systemManager.loaderInfo).parameters;
link|flag
I think the loaderInfo attribute of all sprites in the display tree point to the same LoaderInfo instance, so there is no need to dig up the system manager. But I could be wrong. – David Hanak Mar 25 at 9:16
vote up 0 vote down

I have accessed the flashvars using loaderinfo from the root of my preloader-sprite.

var flashvars:Object = root.loaderInfo.parameters;

The tricky part was to know when the root wasn't null. But I found a blogpost:

http://dndigital.net/blog/2008/08/accessing-flashvars-in-a-custom-flex-preloader/

link|flag
root.loaderInfo is the same as loaderInfo, when root is not null, see my comment to Raul's answer. – David Hanak Mar 25 at 10:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.