I like flash
Male
Joined on 3/19/08
TorterraIsProgrammer 2014-06-23 07:52:32
I'm not a pro at flash, but I think I can help you. (If you're in AS2.) At the last frame of your timer, you should've written this : _root.onEnterFrame = function(){ if(score >= 500){ _root.gotoAndStop(4); } else { _root.gotoAndStop(5); }; };
TorterraIsProgrammer
I'm not a pro at flash, but I think I can help you. (If you're in AS2.)
At the last frame of your timer, you should've written this :
_root.onEnterFrame = function(){
if(score >= 500){
_root.gotoAndStop(4);
} else {
_root.gotoAndStop(5);
};
};