import flash.utils.Timer;
import flash.events.TimerEvent;
trace("10 Points to who ever can understand the following.");
trace("//-------------------------------------------------");
var tMinusHours:Number=24;
var currentTimeHours:Number=0;
var family:Array=new Array("Berty","Bro","Sis","Mum");
var timer01:Timer=new Timer(3600000);
timer01.addEventListener(TimerEvent.TIMER, incCurTime_fnc);
timer01.start();
function incCurTime_fnc(e:TimerEvent):void {
currentTimeHours++;
trace(currentTimeHours);
if (currentTimeHours==tMinusHours) {
timer01.stop();
timer01.removeEventListener(TimerEvent.TIMER, incCurTime_fnc);
family.push("Fifi");
trace(family);
trace("One Skunk has been added to the family. Her name is "+family[4]+".");
}
}
trace("And while you\'re all figuring it out I\'m signing off for the night because it\'s 6AM and I need to be really busy soon. Night guys.");
NEON-DA PINK-A BITCH SLAP!

