Is it possible to send params to swf using SWFLoader or something like it?
So.. I want to create swf loader (swf) which would be able to send some Application.application.parameters to swf swf I’m triing to load (which are usualy sent to an application from html.)
how to do such thing?
If you want to share variable between 2 swf then you can use SharedObject.
See for detailed help and a big example:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/SharedObject.html#includeExamplesSummary
Or check this for a more comprehensive example:
http://drawlogic.com/2008/01/10/howto-sharedobjects-for-local-storage-as3/
Some code to write a variable:
code to read same variable:
Just like a cookie 😉