Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/12/2004, 02:02
Avatar de jahepi
jahepi
Colaborador
 
Fecha de Ingreso: diciembre-2004
Ubicación: Querétaro
Mensajes: 1.124
Antigüedad: 19 años, 4 meses
Puntos: 43
Esto te ayudará:

Código PHP:
instancia.onPress = function() {
    
startDrag(this);
    
this.onEnterFrame = function() {
        
trace("x: "+this._x+" y: "+this._y);
    };
};
instancia.onRelease = function() {
    
stopDrag();
    
delete this.onEnterFrame;
}; 

Suerte!