Posted by Annanna on February 7, 2013 at 4:40am
hello,
I was working on Danland theme. And i have replaced the slideshow with a .swf file. But it not loading in the page. When i right click on the image it showing as 'Movie not loaded..'
The code i was used is
<div class="slideshow">
<object width="950" height="355"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="themes/danland/images/file.swf" name="movie">
<param value="high" name="quality">
<param value="transparent" name="wmode">
<embed width="950" height="355" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="images/file.swf"wmode="transparent"></embed>
</object>
</div>Please help me to find out this....
Comments
This <param
This
<param value="themes/danland/images/file.swf" name="movie">probably needs to be
<param value="/sites/all//themes/danland/images/file.swf" name="movie">(The path needs to be relative to the sites root directory.
And please do not double post, I removed the duplicate.
Thank for your reply
Thank for your reply nevets....
I have made the change in the code. But still the issue was there...
My drupal version is 7. Does any modules is needed for supporting .swf file?
Did you also change
Did you also change
src="images/file.swf"?Also looks like there is a space missing after the closing double quote.