yes thats right I ment 1 2 1 chat. its a wonder what knowing the position of the mouse can do for your web apps. I'm still working on the drag and drop part and ist coming along slow lol I cant get it to register the positions right using event.clientX and event.clientY using
document.onmousemove = function () {
if (iE) {
cur_x = event.clientX;
cur_y = event.clientY;
} else { cur_x = window.pageX;
cur_y = window.pageY
}
}
|