Help?
within a for loop my code is:
_root[“MCBoxes”+][“Boxes”+].onRelease = function(){
if(_root.boxesGuessed =0){
this.cover._visible = false;
}
else if(_root.boxesGuessed =1){
this.cover._visible = false;
}
else if(_root.boxesGuessed >=2){
this.cover._visible = true
}
_root.boxesGuessed +=1
}
For some reason boxesGuessed is getting stuck at two and twos code doesn’t make cover visible. --making them invisible works fine. I got no clue…