That original post was so messed up I thought he was testing SQL at my first look O_O
Okay since I hate the idea of a new guy making something like this, I'll go ahead and say you should be able to make flash do at least SOMETHING dynamic before you try to do anything else in it.
But now I guess I'll help. Timer:
var timer:Number = 0;
time=function(var){
var secs:Number = 30;
while(secs>0){
secs--;
}
if(secs<=0){
secs=30;
var++;
}
}
Now, to call the function, type this under onEnterFrame so you don't have to keep typing all of that:
time(timer);
That should work, I dunno, I didn't test it.