Hello,
My flashobject is located in the follow windows explorer path E:\DotNetNuke\Portals\0\intro.swf , but I have a problem to identify what is the correct FlashObject path in the html code. The code below isn't working, please note in red the path that I'm using.
<SCRIPT src="flashobject.js" type=text/javascript></SCRIPT>
<DIV id=flashcontent style="WIDTH: 320px; HEIGHT: 320px"></DIV>
<SCRIPT type=text/javascript>
var fo = new FlashObject("/Portals/0/intro.swf", "animationName", "520", "520", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.addParam("WMode", "transparent");
fo.addParam("BGColor", "#FFFFFF")
fo.write("flashcontent");
</SCRIPT>
Using the same code but using a http address instead of my local path all works fine.
<SCRIPT src="flashobject.js" type=text/javascript></SCRIPT>
<DIV id=flashcontent style="WIDTH: 320px; HEIGHT: 320px"></DIV>
<SCRIPT type=text/javascript>
var fo = new FlashObject("http://www.kirupa.com/swf/headerv2b.swf", "animationName", "520", "520", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.addParam("WMode", "transparent");
fo.addParam("BGColor", "#FFFFFF")
fo.write("flashcontent");
</SCRIPT>
Do you have an idea wath is the correct path that I must use in the html code when the SWF file is located in E:\DotNetNuke\Portals\0\intro.swf ?
Best Regards