Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/01/2007, 21:04
Avatar de calinsito
calinsito
 
Fecha de Ingreso: enero-2007
Ubicación: Guatemala
Mensajes: 168
Antigüedad: 17 años, 3 meses
Puntos: 2
startdrag que despues haga un gotoandplay

hey amigos he tenido mis tiros en flash pero aqui en me he parado pueden ayurdarme, quisiera saber donde ponerle un AS para que valla a otra escena
aqui esta el AS que estoy usando

onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
startDrag(this);
}
}
onClipEvent (mouseUp) {
stopDrag();
if (this.hitTest(_root.finish)) {
this._x = _root.finish._x;
this._y = _root.finish._y;
} else {
this._x = _root.inicioX;
this._y = _root.inicioY;
}
}