/ 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.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var total:Number; var loaded:Number; this.onEnterFrame = function() { total = _root.getBytesTotal(); loaded = _root.getBytesLoaded(); if(loaded >= total){ delete(onEnterFrame); gotoAndStop(nextFrame()); } }; stop();