TweenMax.to(this, 0.5, {alpha: 0.4});
this.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
this.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler);
function mouseOverHandler(e:Event):void {
TweenMax.to(this, 0.5, {alpha: 1});
}
function mouseOutHandler(e:Event):void {
TweenMax.to(this, 0.5, {alpha: 0.4});
}
el script no tiene errores.
pero en la compilacion del swf. te tira este error :
1120: Acceso a una propiedad TweenMax no definida.
alguien me podra ayudar, soy nuevo en esto del tweenmax.
gracias.