I am trying to load a swf game that requires html param name-value into another movie at runtime
let say the mygame.swf i wanna load is supposed to run successfully with this code
<param name=“movie” value=“mygame.swf” />
<param name=“allowScriptAccess” value=“always” />
<param name=“allowFullScreen” value=“true” />
<param name=“loop” value=“false” />
<param name=“menu” value=“false” />
<param name=“quality” value=“high” />
<param name=“wmode” value=“False” />
and a movie name loader.swf needs to load mygame.swf,
it does that very well without problem but the loaded mygame.swf acts funny because those param were not pass to it.
how do i pass those param name/value across? if no way, them how do i embed or set the params in the mygame.fla
NOTE: i mean param as you have it in html codes, NOT flashvars
Thanks guys