Flash 模板上的加载程序不起作用
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里是:
我真的不明白为什么在同一层上有相同的预加载器和相同的实例名称。第二个在那里没有做任何事情。
希望它有帮助,祝你好运。
抢
Here it is:
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
好的,ROB(heartcode)给出的答案是:
谢谢!
OK the answer was give it by ROB (heartcode) and was:
thanks!