Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/06/2011, 05:23
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: mover imagenes

Probá invocando a la siguiente función durante el evento onmousemove:
Código PHP:
function clearSelection() {
    var 
sel ;
    if(
document.selection && document.selection.empty){
        try{
document.selection.empty() ;}catch(err){}
    } else if(
window.getSelection) {
        
sel=window.getSelection();
    if(
sel && sel.removeAllRanges)
        
sel.removeAllRanges() ;
    }