Hi to the nice people of K
I would be nearly done with this project if it wasnt for this teetheing problem
The preloader animation is a spinning 3D logo which must be seen at least up to the first rotation otherwise the logo get all uggly and that’s unacettable for a company logo.
How do I tell the 3Dlogo_mc to play till the end even if the percentage has reached 100% and only than go to frame 5?
Pleeeease help!
I am using this preloader script
onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)100)).25;
per = int(percent);
percentage = per+"%";
loadBar._width = per;
if (percent>99) {
_parent.gotoAndStop(5);
}
}
Thanx and have a nice w/e