在 Actionscript 中获取嵌入标签的宽度/高度

发布于 2024-11-15 14:10:55 字数 140 浏览 1 评论 0原文

我使用舞台 ScaleMode 作为 NO_SCALE,并想知道嵌入标签中 HTML 中指定的宽度和高度。有办法吗? 我使用的是 Flash Pro(不是 Flex)。

基本上,我试图保持 UI 的灵活性,因此我想根据这些值重新调整一些 UI 组件。

I am using the stage ScaleMode as NO_SCALE and want to know the width and height specified in HTML in the embed tag. Is there a way to go about it?
I am using Flash Pro (not flex).

Basically I am trying to keep the UI flexible and hence I want to realign some UI components based on those values.

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

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

发布评论

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

评论(1

云胡 2024-11-22 14:10:55

使用:

stage.stageWidth
stage.stageHeight

将提供 SWF 嵌入页面或在 Flash Player 中拉伸时的总宽度和高度。

为了简化具有动态宽度和高度的 SWF 的使用,我还建议如下:

stage.align = StageAlign.TOP_LEFT;

Using:

stage.stageWidth
stage.stageHeight

Will give you the total width and height of the SWF as it's been embedded into a page or stretched in Flash Player.

To simplify working with an SWF that can have dynamic width and height, I recommend the following as well:

stage.align = StageAlign.TOP_LEFT;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文