Okay, I didn’t think this was that hard since I was successful with a similar set of code using checkboxes . . .
I have two movie clips and two radio buttons. One radio button has initial value true and the other is false. The clip that goes with the “true” radio button is visible, the other has code . . .
onClipEvent(load){
this._visible = false;}
All I want to do is have the appropriate radio button load the appropriate MC. What would be the appropriate code? I am using a Change Handler called “loadTemp” and am defining it as follows:
function loadTemp(){
if(RadioButton1.getValue == 1){
MC1._visible = true;
MC2._visible = false;
}
else {
MC1._visible = false;
MC2._visible = true;
}
updateAfterEvent();
}
This lets me load MC2 but then when I go back to RadioButton1 nothing happens. I’m sure there is a better way - anyone? :tb: