Guest User

Untitled

a guest
Jun 12th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*PRELOADER WITHOUT BAR*/
  2. stop();
  3. onEnterFrame = function ()
  4. {
  5.     filepercent = Math.floor(getBytesLoaded() / getBytesTotal() * 100);
  6.     if (filepercent >= 100)
  7.     {
  8.         play();
  9.     }
  10. };
  11.  
  12. /*Press a "PLAY MOVIE" button on the next frame. Make sure to add a stop();*/
  13. /*script on that frame with the "PLAY MOVIE" button.*/
Add Comment
Please, Sign In to add comment