使用倒计时器将 swf 文件随机加载到主 swf 中
好的,大家有个问题,这可以完成吗?或者已经完成了吗?或者有人可以指出我正确的方向吗(请注意,我是一个动作脚本的新手)
我有一个主要的 swf 电影,大约 600 像素 x 400 像素,
我有一个想要这个运行30秒,然后我想要在底角有一个倒计时器,比如10秒,之后我希望它在原始文件的顶部随机加载另一个swf文件,然后计时器重复10秒秒并在顶部重复随机加载另一个 swf 文件等等,等等,
那么解决这个问题的最佳方法是什么
ok guys a question, can this be done or has it already been done, or can someone point me in the right direction (be aware i an a total newbie with action script)
i have a main swf movie about 600px x 400 px
what i want is this to run for say 30 seconds, then i want a countdown timer in the bottom corner for say 10 seconds, after this i want it to randomly load another swf file over the top of the original, and then the timer repeats for 10 seconds and repates the random loading of another swf file over the top etc, etc, etc
so whats the best way around this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是有可能的。如果您熟悉 AS3 的基本语法和语法,那么在将以下主题添加到您的工具箱后,您应该已经准备好了。
1) 计时器
http://livedocs.adobe.com/flash /9.0/ActionScriptLangRefV3/flash/utils/Timer.html
2) 加载器
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html
3) Math.random()
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Math.html
总结一下我的内容建议是:
It's possible. If you're comfortable with the basic syntax and grammar of AS3, then after adding the following topics to your toolbox, you should be ready.
1) Timers
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/Timer.html
2) Loaders
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html
3) Math.random()
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Math.html
In summary what I'd suggest would be to: