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;
}
}