柔性。 停止电影
我使用 Image
标签将 swf 影片加载到我的 Flex 应用程序中。
<mx:Image id="preloader" x="0" y="0" width="100%" height="100%" scaleContent="false"
source="@Embed(source='/assets/swf/preloader_small.swf')"
horizontalAlign="center" verticalAlign="center"/>
它是一个动画预加载器。 有人可以告诉我如何停止预加载动画(例如在 MovieClip
中调用 stop() 方法)。 不上传动画等
最好 弗拉基米尔
I loaded an swf movie into my flex application using an Image
tag.
<mx:Image id="preloader" x="0" y="0" width="100%" height="100%" scaleContent="false"
source="@Embed(source='/assets/swf/preloader_small.swf')"
horizontalAlign="center" verticalAlign="center"/>
It is an animated preloader. Can someone tell me how to stop the preloader animation (like calling stop() method in a MovieClip
). Without uploading the animation and etc
best
Vladimir
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每当播放头在某一帧上遇到停止动作时,它都会停在该帧上。 然后,您将需要采取行动来告诉播放头移动到下一个场景或帧。 您可以通过在最后一帧上添加转到操作将其发送回第一帧来循环场景......
Anytime the playhead encounters a stop action on a frame, it will stop on that frame. You will then need actions to tell the playhead to move along to the next scene or frame. You can loop a scene by adding a goto action on the last frame that sends it back to the first frame.....