Stop SWF file from repeating
I have converted a short clip to an .swf file, i want to implement it on my website:
<object width="400" height="300">
<param 开发者_JAVA技巧name="movie" value="movie.swf">
<embed src="movie.swf" width="400" height="300">
</embed>
</object>
When i play it it autoplays (that's fine) but it also keeps repeating over and over, i'd like it to stop at the end and just display the end frame (as mentioned i converted a movie so i cant do it with actionscript in the .fla file). Thanks for any tips!
Try adding
<param name="loop" value="false">
after the other param
and loop="false"
within the embed tag.
http://kb2.adobe.com/cps/127/tn_12701.html
精彩评论