Hi (again)
i`m using this code …to preload a movie clip
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}
but the movie plays only when it`s 100 pecrcent loaded…
i want it to play at only 5% loaded and then continue to load to 100%
how can i achive this