Código :
on (rollOver) {
this._parent.brocha._visible = false;
this.enabled = true;
this._parent.brocha.enabled = true;
}
on (rollOut) {
this._parent.brocha._visible = true;
this.vacio.enabled = false;
this._parent.brocha.enabled = false;
}
El caso es que todo funciona menos enabled y no lo entiendo.
Necesito que el MC brocha desaparezca y me deje utilizar los contenidos del MC vacio (scrolls, botones..). En un principio intente por medio de hitTest, pero no conseguia que funcionase, eso me habria ahorrado todo este jaleo ya que el MC vacio no tendria ninguna acción que deshabilitar, pero tampoco estoy seguro de que fuese la mejor opcion.
