Hello,
i have an aspx page on which:
1. user clicks and holds down the mouse
2. setInterval starts my procedure...let's say "sub_While_Mouse_Down"
3. while still holding the mouse down, the user moves the mouse on
screen
I need to be able to check the mouse position during this
"sub_While_Mouse_Down".
4. I get an Error if i try to use Window.Event..ClientX inside the
"sub_While_Mouse_Down".

any ideas?
thanks

Re: Find mouse location while mouse is held down and moved on screen by Anthony

Anthony
Tue Apr 10 16:11:19 CDT 2007


"lina" <lina400@gmail.com> wrote in message
news:1176094819.027265.268450@n59g2000hsh.googlegroups.com...
> Hello,
> i have an aspx page on which:
> 1. user clicks and holds down the mouse
> 2. setInterval starts my procedure...let's say "sub_While_Mouse_Down"
> 3. while still holding the mouse down, the user moves the mouse on
> screen
> I need to be able to check the mouse position during this
> "sub_While_Mouse_Down".
> 4. I get an Error if i try to use Window.Event..ClientX inside the
> "sub_While_Mouse_Down".
>
> any ideas?
> thanks
>

Why not simply use the mouse move event instead of using setInterval?