Flash/As3 不会自动启动
首先,这里是Flash/AS3新手。
我用 ActionScript 创建一个小动画(基本上是不同图像的不同间隔的淡入/淡出)。当我直接在 FlashPlayer 中查看时,当我在浏览器(任何)中查看时,它可以工作,我需要在应用程序内部“单击”才能启动淡入淡出。
在我的应用程序中,我使用这个: stage.addEventListener(Event.ACTIVATE, launch); 所以我猜这是因为默认情况下应用程序未激活,我的问题是如何使动画在加载时开始而不需要单击它?
First of all, Flash/AS3 newbie here.
I create a small animation with ActionScript (basically fadeIn/fadeOut at different interval of different images). When I view in FlashPlayer directly it work when I view in browsers (any) I need to "click" inside the application for the fadeIn to start.
In my application I use this : stage.addEventListener(Event.ACTIVATE, launch);
so I guessed it was caused because by defautl the application is not activated, my question is how can I make the animation start at loading without needing to click on it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试不同的事件..例如ENTER_FRAME(如果您输入了该函数,请不要忘记将其删除)..
try different events.. like ENTER_FRAME (don't forget to remove it if you entered the function)..