HN user

krizan

3 karma
Posts3
Comments8
View on HN

Actually your answer makes the most sense. But It's confusing for the most users (people ARE the creatures of habits after all) I'm a business owner and customers asked me: "Why i can't do the same thing i do in VLC player!?" So i was curious.

Lemmings 404 page 14 years ago

Tested in Chrome Version 24.0.1312.52 m

  var savedCount = 0;
  var saveFromDeathInterval = setInterval(function(){
  	for(var i=0;i<tabLemmings.length;i++){
            var lem = tabLemmings[i];
            if(lem.etat == 'tombe'){
               lem.etat = 'para';
               lem.paraOpen();
               savedCount++;
            }
  	}
        if(savedCount == 404)
        {
           clearInterval(saveFromDeathInterval);
        }
  },2000);