I am trying to embed the generated swf file in an html which lies in
the parent directory and am not able to do so here is the detail

root folder contains main.html
under root folder is en_US which contains main.swf

here is my object tag in the main.html
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
        id="main" width="100%" height="100%"
 
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab";>
        <param name="movie" value="en_US/main.swf" />
        <param name="quality" value="high" />
        <param name="bgcolor" value="#ffffff" />
        <param name="allowScriptAccess" value="sameDomain" />
        <embed src="en_US/main.swf" quality="high" bgcolor="#ffffff"
                width="100%" height="100%" name="main" align="middle"
                play="true"
                loop="false"
                quality="high"
                allowScriptAccess="sameDomain"
                type="application/x-shockwave-flash"
                pluginspage="http://www.adobe.com/go/getflashplayer";>
        </embed>
</object>

This does not work.  

However if put the main.html is in en_US and update the path to look
for main.swf from the same folder it works OK.

Any help here will be appreciated.



Reply via email to