|
Andrei Rinciog [Extend Studio]
post date:
2009-08-06 05:24:59
|
Hello Debra,
Well, if you have the html that uses the swf file in the same Flash folder, then the path to your swf from that script is “your.swf”. If you copy that script to the index page, that’s one level higher, it will have the same path and look for your swf in the root folder. But, your swf is located in the “Flash” folder, so you need to replace the path “your.swf” with “Flash/your.swf” in all the places that you find.
Regards,
Andrei
|
|
|
Debra
post date:
2009-08-06 09:50:45
|
okay, I tried that and it did not work, below is the code what am I missing?
<script language="JavaScript" type="text/javascript">
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '194',
'height', '145',
'src', 'all_hands_solution',
'quality', 'high',
'pluginspage', 'http://www.adobe.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'all_hands_solution',
'bgcolor', '#ffffff',
'name', 'all_hands_solution',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'all_hands_solution',
'salign', ''
); //end AC code
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="194" height="145" id="all_hands_solution" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="flash/all_hands_solution.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="flash/all_hands_solution.swf" quality="high" bgcolor="#ffffff" width="194" height="145" name="all_hands_solution" align="middle" allowscriptaccess="sameDomain" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
</object>
</noscript>
|
|
|
Andrei Rinciog [Extend Studio]
post date:
2009-08-06 11:33:01
|
Hello,
You need to change in the parameter list, the src parameter:
'src', 'flash/all_hands_solution'
Regards,
Andrei
|
|