Guest User

Untitled

a guest
Apr 8th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. onClipEvent (enterFrame) {
  2.     _root.barlength = 300;/*CHANGE LENGTH HERE*/
  3.     _root.filetotal = _root.getBytesTotal();
  4.     _root.fileloaded = _root.getBytesLoaded();
  5.     _root.percentageloaded = Math.floor(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
  6.     _root.filepercent = _root.percentageloaded + "%";
  7.     _root.preloaderbar._width = _root.percentageloaded * _root.barlength / 100;
  8.     trace(_root.filepercent)
  9.     if (_root.percentageloaded >= 100)
  10.     {
  11.         _root.play();
  12.     }
  13. }
Add Comment
Please, Sign In to add comment