For Security Reasons I’m trying to Load my main.swf file through an empty swf file so only the empty swf file gets cached by the browsers and not the main.swf file.
Now let me explain where everything is going wrong for me.
the original swf file gets embedded by this tag:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width=750 height=450>
<param name=movie value="main.swf">
<param name=quality value=high>
<param name=FlashVars value="<? echo "baseurl=$webroot&skin=$skin&userid=$username&password=$password&"; ?>">
<param name=bgcolor value=<? echo "$skinbgcolor"; ?>>
<param name=menu value=false>
<embed src="main.swf" FlashVars="<? echo "baseurl=$webroot&skin=$skin&userid=$username&password=$password&"; ?>" menu=false quality=high bgcolor=<? echo "$skinbgcolor"; ?> width=750 height=450 type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
but when I try to load this main.swf file through the empty swf file using loadovie() only graphics load through no data is passed through the loader movie.
How can I make it so all the data gets through to the main.swf just as it were not being loaded through a second swf?
thank you