Published in: ActionScript
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.
var total:Number; var loaded:Number; this.onEnterFrame = function() { total = _root.getBytesTotal(); loaded = _root.getBytesLoaded(); if(loaded >= total){ delete(onEnterFrame); gotoAndStop(nextFrame()); } }; stop();
You need to login to post a comment.
