
05/02/2005, 15:52
|
 | | | Fecha de Ingreso: enero-2002 Ubicación: 000's DiMensiOn
Mensajes: 979
Antigüedad: 23 años, 3 meses Puntos: 3 | |
Código:
MovieClip.prototype.desvanece = function() {
var incremento = 100;
this.onEnterFrame = function() {
if (incremento>0) {
this._alpha = incremento;
incremento--;
} else {
delete this.onEnterFrame;
}
};
};
//
mc.desvanece();
__________________ GOC00 CominG soOn v2.0
CyA! & GooD LuCK... |