funny how all shootorials are rated 4.05..
people actually do it (Now for once i tried it and it is pretty easy since i'm a developer(other account which is banned until TOMORROW :D :D ))
why don't you make one? I'll help you making a timer, heres the code:
start_time = getTimer();
countdown = 7200000;
onEnterFrame = function () {
elapsed_time = getTimer()-start_time;
_root.count.text = time_to_string(elapsed_time);
_root.count_down.text = time_to_string(_root.countdown-elapsed_time);
};
function time_to_string(time_to_convert) {
elapsed_hours = Math.floor(time_to_convert/3600000);
remaining = time_to_convert-(elapsed_hours*3600000);
elapsed_minutes = Math.floor(remaining/60000);
remaining = remaining-(elapsed_minutes*60000);
elapsed_seconds = Math.floor(remaining/1000);
[1000chars max not full code]
good luck