I've been trying to make this work all day... errr... it's such a pain in the.... as of right now I can get the window to move according to the mouse position by using...

function drag()
{
var x = event.clientX;
var y = event.clientY;
window.moveTo(x, y)
}

I call this on a mouseDown event. It works... moves the window to the mouse position... But it's not what I want. I want it to follow the mouse when the mouse is down. I tryed using setInterval, setTimeout, while, do while, for.. I couldn't get any of these to work. I also tryed adding a onMouseMove handler but the results were not what I had hoped. if I call this function from flash via Get Url 'javascript:function Drag();' It's even worse... I think because event.clientX has to be associated with an event.. ie mousedown?? By the way for Netscape you have to use event.screenX but that's beside the point.

I'm really frustrated... any javascript gurus out there willing to help?

thx

Paul