Can someone confirm this is correct?
This has been doing my head in...
Can you confirm that the following is sound and correct;
<head>
<script src="http:/ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js" type="text/javascript">
<script type="text/javascript">
var flashvars = {};
flashvars.folderPath = "ABSOLUTEPATHTOWHEREMP3FOLDERISHOSTED/";
var params = { scale:'noScale', salign:'tl', allowFullScreen:'true' };
var attributes = {};
swfobject.embedSWF("ABSOLUTEPATHTOWHEREMP3.SWFISHO STED", "mp3", "768", "120", "8.0.0", false, flashvars, params, attributes);
</script>
</head>
<body>
<div id="mp3" align="bottom">
<object data="mp3.swf" type="application/x-shockwave-flash" width="500" height="300">
<param name="movie" value="mp3.swf">
</div>
</body>
...Assuming that the mp3 folder has been uploaded and hosted with all files in exactly the same place when they were local?
|