阻止 SWF 文件重复
我已将一个短剪辑转换为 .swf 文件,我想在我的网站上实现它:
<object width="400" height="300">
<param name="movie" value="movie.swf">
<embed src="movie.swf" width="400" height="300">
</embed>
</object>
当我播放它时,它会自动播放(很好),但它也会一遍又一遍地重复,我希望它在最后停止并只显示结束帧(正如前面提到的,我转换了电影,所以我无法使用 .fla 文件中的动作脚本来完成它)。 感谢您的任何提示!
I have converted a short clip to an .swf file, i want to implement it on my website:
<object width="400" height="300">
<param 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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加
在其他参数之后
和嵌入标记内的
loop="false"
。http://kb2.adobe.com/cps/127/tn_12701.html
Try adding
<param name="loop" value="false">
after the other paramand
loop="false"
within the embed tag.http://kb2.adobe.com/cps/127/tn_12701.html