Flash 模板上的加载程序不起作用

发布于 2024-10-10 08:28:42 字数 610 浏览 2 评论 0原文

我正在开发一个 Flash 模板,当我发布该网站时,加载器不起作用。我检查了 .fla 的操作菜单中的代码,但找不到错误。这是代码。

onClipEvent (load)
{
    total = _root.getBytesTotal();
}
onClipEvent (enterFrame)
{
    loaded = _root.getBytesLoaded();
    percent = int(loaded / total * 100);
    text = percent + "%";
    gotoAndStop(percent);
    if (loaded == total)
    {
        _root.gotoAndPlay(4);
    } // end if
}

这是完整的 Flash 模板。与 .fla 和所有文件。 http://hotfile.com/dl/93339597/35e8fdb/new_28781.zip .zip.html

I'm working on a flash template, and when i publish the site, the loader dosnt work. I check the code in the actions menu of the .fla and i can't find an error. this is the code.

onClipEvent (load)
{
    total = _root.getBytesTotal();
}
onClipEvent (enterFrame)
{
    loaded = _root.getBytesLoaded();
    percent = int(loaded / total * 100);
    text = percent + "%";
    gotoAndStop(percent);
    if (loaded == total)
    {
        _root.gotoAndPlay(4);
    } // end if
}

this is the complete flash template. with the .fla and all the files.
http://hotfile.com/dl/93339597/35e8fdb/new_28781.zip.zip.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沦落红尘 2024-10-17 08:28:42

这里是:

  1. 第 1739 层/第 3 帧 -->复制“load0”实例第 1739 层/第 3 帧的代码
  2. -->清除关键帧
  3. 第1739层/第1帧-->将您复制的代码粘贴到“load0”实例。

我真的不明白为什么在同一层上有相同的预加载器和相同的实例名称。第二个在那里没有做任何事情。

希望它有帮助,祝你好运。

Here it is:

  1. Layer 1739 / Frame 3 --> Copy the code of the 'load0' instance
  2. Layer 1739 / Frame 3 --> Clear the key frame
  3. Layer 1739 / Frame 1 --> Paste the code you copied to 'load0' instance.

I don't really understand why you have the same preloaders on the same layer with the same instance name. The second one doesn't do anything there.

Hope it helps, good luck.
Rob

凉城 2024-10-17 08:28:42

好的,ROB(heartcode)给出的答案是:

Layer 1739 / Frame 3 --> Copy the code of the 'load0' instance
Layer 1739 / Frame 3 --> Clear the key frame
Layer 1739 / Frame 1 --> Paste the code you copied to 'load0' instance.

谢谢!

OK the answer was give it by ROB (heartcode) and was:

Layer 1739 / Frame 3 --> Copy the code of the 'load0' instance
Layer 1739 / Frame 3 --> Clear the key frame
Layer 1739 / Frame 1 --> Paste the code you copied to 'load0' instance.

thanks!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文