13/01/2010, 11:14
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses Puntos: 406 | |
Respuesta: Cargar MC de biblioteca Escribe tu código así:
Código:
mari.onRollOver = function() {
vacio.attachMovie("square","marin",this.getNextHighestDepth());
vacio._x = Stage.width/2;
vacio._y = Stage.height/2;
vacio._visible = true;
};
mari.onRollOut = function() {
vacio._visible = false;
};
|