![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
25/11/2005, 09:53
|
![Avatar de Bandit](http://static.forosdelweb.com/customavatars/avatar36355_1.gif) | Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 7 meses Puntos: 406 | |
Hola filly.
Al botón colocále un nombre de instancia por ejemplo: mi_boton.
Código en el primer frame de tu película:
mi_boton.onRollOver = function() {
_root.onEnterFrame = function() {
if (_root.plano._x<400) { //aquí cambias el valor 400 según tu necesidad.
_root.plano._x += 10;
}
};
};
Espero haberte sido de ayuda. |