-
1 Attachment(s)
Please help !
Please download this file and tell me what is wrong. I think the problem is in frame 16 of the movie clip gguy (the black circle on the stage). I have an actionscript on the frame telling it to go to and play frame 58 if the dynamic text box with a varible name of bad health is 0 or less than 0. It is supposed to go to and play frame one if it is greater than 0. Please download and tell me what is wrong with it. This is the actionscript I have on the frame.
if (badhealth <= 0) { // health is less than or equal to 0
_root.bg.gotoAndPlay(1);
};
if (badhealth <= 0) { // health is less than or equal to 0
_root.bg.gotoAndPlay(58);
};
Any help is apriciated.
thanks,
Chad
-
if (_root.badhealth <= 0)
-
Thak you Sooooooooo Much!