ciao devo fare un radio button che sipossa selezionare o deselezionare ma questo codice non funge, come mai?
onClipEvent (enterFrame) {
trace("gira");
this.onPress = function() {
if (this.getState()) {
trace("a"+this.getState());
this.setState(false);
} else {
trace("b"+this.getState());
this.setState(true);
}
};
}

Rispondi quotando
