AS2: Simple Preloader


/ Published in: ActionScript
Save to your folder(s)

Let's say you want to place a Preloader in a frame before the actual Flash app or in a previous Scene, this is a really simple, ghetto way of doing it.


Copy this code and paste it in your HTML
  1. var total:Number;
  2. var loaded:Number;
  3.  
  4. this.onEnterFrame = function()
  5. {
  6. total = _root.getBytesTotal();
  7. loaded = _root.getBytesLoaded();
  8. if(loaded >= total){
  9. delete(onEnterFrame);
  10. gotoAndStop(nextFrame());
  11. }
  12. };
  13. stop();

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.