I’ve been teaching myself Actionscript 2.0 for all of three days, so bear with the n00b here.
I want a movie clip (next) to be visible when the score (dynamic text box called score) is 0, and invisible when it is 1, 2, 3, or 4. (For the record, the score starts out as 4 and decreases.) I’ve tried things like the following, but nothing works.
score.text = 4;
if(score.text==0){
next=visible
}else{
next!=visible
}
and to tell the truth, I have NO idea what I’m doing. Does anyone know how to do this?
:puzzle: