View Single Post
ישן 25-11-05, 19:30   # 2
galt
חבר פורום
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 305

galt לא מחובר  

קוד:
 
onClipEvent (enterFrame) {
 total = _root.getBytesTotal();
 loaded = _root.getBytesLoaded();
 percents = Math.round((loaded/total)*100);
 gotoAndStop(percents);
 if (percents=="100") {
  _root.play();
 }
}
  Reply With Quote