如何更改 html 中的 swf 文件尺寸...?

发布于 2024-09-14 11:22:02 字数 85 浏览 8 评论 0原文

我刚刚仅使用 AS3 构建了一个 Flex 应用程序..生成的 swf 将与浏览器窗口一样扩展..我希望减小 swf 文件的尺寸...有什么想法吗?谢谢..

I just built a flex applcation with AS3 only.. the generated swf will expand as much as browser's window..I wish to reduce the dimension of swf file...any ideas?? Thanks..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

家住魔仙堡 2024-09-21 11:22:02

您可能需要指定 swf 尺寸,例如:

[SWF(width="640", height="480")]

如果您直接在浏览器中查看它,则应将 swf 嵌入 html 文档并指定 swf 的尺寸。
如果这是面向公众的网站,我建议使用 SwfObject.js。或者,如果您不熟悉 Javascript,您可以使用对象标签:

  <object width="640" height="480">
    <param name="movie" value="your_file.swf">
    <embed id="embed" src="your_file.swf" width="640" height="480"></embed>
  </object>

You may need to specify your swf dimensions eg:

[SWF(width="640", height="480")]

If you're viewing it directly in your browser, you should embed your swf inside an html document and specify the dimensions of your swf.
If this is for a public facing website, I'd recommend using SwfObject.js. Or if you aren't comfortable with Javascript you can use the object tag:

  <object width="640" height="480">
    <param name="movie" value="your_file.swf">
    <embed id="embed" src="your_file.swf" width="640" height="480"></embed>
  </object>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文