flex: swfloader - flash 文件与其配置的大小重叠
我使用 swfloader 使用以下命令在屏幕中间加载 swf 文件:
现在 Flash 文件的舞台采用 Flash 文件本身与舞台重叠的确切大小一些图形。我怎样才能隐藏重叠的图形?
i'm using swfloader to load swf file in the middle of the screen using the following command:
<mx:SWFLoader id="game_swf" source="crazy_counting.swf" x="198" y="0" width="721" maxWidth="721" height="531" maxHeight="531" />
now stage of the flash file takes the exact size that i stated by the flash file itself is overlapping the stage with some graphics. how i can i hide overlapped graphics ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过将 swfloader 放置在容器(例如盒子)内解决了该问题。 Flash 图形不会超出容器的限制。我还需要确保该框与 swf 的高度和宽度相匹配。
i resolved the issue by placing the swfloader inside a Container, for example a box. the flash graphics do not go out of the limits of the Container. i need also to sure that box to match the height and width of the swf.
我正在使用 Flex 4(夜间版本 4.1.0.14607)。像 Spark VGroup 这样的容器,其属性 ClipAndEnableScrolling 设置为“true”,为我解决了这个问题。
I'm using Flex 4 (nightly build 4.1.0.14607). A container such as Spark VGroup with it's property clipAndEnableScrolling set to "true" solved this problem for me.