can anyone tell me why this script works in Flash player 6 and not Flash Player 7?
[AS}
onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)100)).25;
per = int(percent)-4;
percentage = per+"%"-35;
_root.preloader.loadBar._width = per;
if (percent>99) {
_parent.gotoAndStop(2);
}
}
[/AS]