22/03/2010, 18:20
|
| | Fecha de Ingreso: septiembre-2009
Mensajes: 26
Antigüedad: 15 años, 2 meses Puntos: 1 | |
Respuesta: urgente!!! botones AS 03 Si hay una forma mas sencilla, utilizando el name de cada boton, por ejemplo:
Boton Next1 name: next_1
Boton Prev 1 name: prev_1
Boton Next 2 name: next_2
Tomando de ejemplo los nombres de los botones mencionados anteriormente:
function next_prev(e:MouseEvent)
{
// IR A EL FRAME CORRESPONDIENTE
switch(e.currentTarget.name)
{
case "next_1":
gotoAndStop(2);
break;
case "next_2":
gotoAndStop(3);
break;
case "prev_1":
gotoAndStop(1);
break;
}
}
// TODOS LLAMAN A LA MISMA FUNCION, PERO DEPENDIENDO DEL NOMBRE, SE HACE UNA ACCION DETERMINADA
next_1.addEventListener(MouseEvent.CLICK, next_prev);
prev_1.addEventListener(MouseEvent.CLICK, next_prev);
next_2.addEventListener(MouseEvent.CLICK, next_prev);
Espero que te sirva, saludos. |