BackDoor- Door 1
You find yourself in a strange house with only a man on the phone as a guide.
4.13 / 5.00 25,820 ViewsMini Commando
Action adventure game with nazi enemies in the second world war.
3.96 / 5.00 21,018 Viewsimport com.newgrounds.API;
var percent_loaded:Number = API.getPercentLoaded();
This method is used to determine how much of your movie (including assets loaded from the API Gateway) has been loaded. 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();
}
}