使用倒计时器将 swf 文件随机加载到主 swf 中

发布于 2024-08-27 13:56:10 字数 242 浏览 4 评论 0原文

好的,大家有个问题,这可以完成吗?或者已经完成了吗?或者有人可以指出我正确的方向吗(请注意,我是一个动作脚本的新手)

我有一个主要的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒与心事 2024-09-03 13:56:10

这是有可能的。如果您熟悉 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

总结一下我的内容建议是:

  • 设置一个计时器,
  • 在触发时每 N 秒触发一次,使用加载器开始加载文件名已使用随机数生成或检索的文件

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:

  • set up a Timer which fires every N seconds
  • when it fires, use a Loader to start loading a file whose file-name has been either generated or retrieved using a random number
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文