hello fellas,
I’m using a very basic script for a pre loading:
[AS]
onClipEvent (enterFrame) {
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this._width = getPercent187;
_root.loadtext = Math.round(getPercent100)+"% please wait…";
if (bytes_loaded == bytes_total && bytes_loaded > 0) {
_root.gotoAndStop(3);
}
}
[/AS]
But i added a “skip” button… When i press it, the root goes to frame 3 where a stop is and nothing else. But it keeps on loading… So how do you tell flash: “Stop loading you ****”