Hola Distriker,
Lo que necesitaremos crear:
- una imagen, esta se debe guardar no como boton, sino como MovieClip.
- el texto, esta debe de estar dentro de un MovieClip.
- boton cerrar (x) tambien MovieClip.
Ahora en una nueva capa, frame 1.
tu imagen, dale como nombre "MiBoton1".
luego tu MoviClip del Texto dale de nombre "info1"
a tu boton dale dde nombre "btn_cerrar"
A continuacion el Codigo AS.
Código:
import mx.transitions.Tween;
import mx.transitions.easing.*;
//declaramos valores iniciales
var miTween:Tween = new new Tween(MiBoton1, "_alpha", Regular.easeOut, 0, 100, 0.5, true);
info1._alpha = 0;
//
MiBoton1.onRelease = function(){
var miTween:Tween = new new Tween(info1, "_alpha", Regular.easeOut, 0, 100, 1, true);
}
//Para cerrar, (el boton de cerrar se encuentra dentro de Info1).
info1.btn_cerrar.onRelease = function(){
var miTween:Tween = new new Tween(info1, "_alpha", Regular.easeOut, 100, 0, 1, true);
}
Pero igual te lo subo a la siguiente URL:
http://www.speedyshare.com/857609812.html
Suerte.
JCastro.