NaN:NaN
NaN:NaN
--:-- / --:--
Newgrounds Background Image Theme

DekuScrubSamurai just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Browse Sections

Newgrounds Wiki: getPercentLoaded

Page Contents

import com.newgrounds.API;
var percent_loaded:Number = API.getPercentLoaded();
import flash.events.Event;
import com.newgrounds.API;


function preloaderLoop(e:Event):void {
     var percent_loaded:Number = API.getPercentLoaded();
     if (percent_loaded == 100) {
           play();   
     }    
}


addEventListener(Event.ENTER_FRAME, preloaderLoop);
import com.newgrounds.API;


onEnterFrame = function() {
     var percent_loaded:Number = API.getPercentLoaded();
     if (percent_loaded == 100) {
           play();   
     }
}