Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 facebook 游戏,我希望我的游戏具有流畅的宽度。实现它的最佳实践是什么?
我应该只使用特殊的嵌入方式还是我也需要更改 as3 代码?
我尝试了谷歌,但我没有成功。
非常感谢您的帮助。
通常,您需要将您的 swf 嵌入width=100%宽度和height=100%高度。
width=100%
height=100%
您的 SWF 文件将假定 stageWidth/stageHeight 为其所在容器的大小。然后,要跟踪窗口是否已调整大小,请使用以下侦听器:
stage.addEventListener(Event.RESIZE, YOUR_HANDLER);