Hello all, hope everyone is well.
I am trying to set the visability of a button to false unless certain conditions are met.
I have put the button inside a movie clip and used an onClipEvent
onClipEvent (load) {
if (partA1 == true && _partB1 == true) {
abn._visible = true ;
} else {
abn._visible = false ;
}
}
Not only does this not work but also the gotoAndplay doesn't work on the button !
If it wasn't for such lovely weather today i would have screamed by now
thanx in advance
I am trying to set the visability of a button to false unless certain conditions are met.
I have put the button inside a movie clip and used an onClipEvent
onClipEvent (load) {
if (partA1 == true && _partB1 == true) {
abn._visible = true ;
} else {
abn._visible = false ;
}
}
Not only does this not work but also the gotoAndplay doesn't work on the button !
If it wasn't for such lovely weather today i would have screamed by now
thanx in advance