hiya all,


here is a script of a preloader i am using.

tellTarget ("../") {
FrameLoad = int((_framesloaded/_totalframes)*100);
}
tellTarget ("sub") {
percentage = ../../:FrameLoad add "%";
gotoAndStop (../../:FrameLoad);
}
if (Number(../:FrameLoad) == 100) {
tellTarget ("../") {
gotoAndPlay (Number(_currentframe)+1);
}
} else {
tellTarget ("../") {
gotoAndStop (_currentframe-1);
}
}

now i would like to know what i have to change in this script, so the preloader only loads till a certain scene in the middle of the movie, e.g. "news". i thought it might be somewhere here "FrameLoad = int((_framesloaded/_totalframes)*100);" but haven't experience with scripting. it would be important for me that i can keep this script in general, just a little change for this scene-loading. if that is possible of course...

any help would be great!

Bori