Currently I have my preloader calculating bytesLoaded & bytesTotal of the root and of _level99 because level 99 is loading a movie, now when I traces the progress it looks perfect and when bytesLoaded bytesTotal the movie plays as it should.
The Problem
I want to do something to the movie once it loads, (right now it finishes loading before the rest of the swf and then it starts playing).
so I made a statement like so:
if(_root._level99.getBytesLoaded() _root._level99.getBytesTotal()){
//perform action
}
but when I insert that it makes my current preloader go NaN. When I trace the percentage.text now it just says NaN, if I cut out that little line of code than I get percentage.text to count again like it’s suppose to. Anyone know why that is and how I can fix it. Thanks in advance for any help you can provide









