DesktopView current mouseLocation?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

DesktopView current mouseLocation?

John Clonts
I'm trying to get the current Point representing the mouse location on
the entire screen.  Is there a way to do that?

Thanks,
John


Reply | Threaded
Open this post in threaded view
|

Re: DesktopView current mouseLocation?

Blair McGlashan
John

"John Clonts" <[hidden email]> wrote in message
news:[hidden email]...
> I'm trying to get the current Point representing the mouse location on
> the entire screen.  Is there a way to do that?

Cursor class>>position
    "Answer a <Point> containing the current cursor position in screen
co-ordinates."

Regards

Blair


Reply | Threaded
Open this post in threaded view
|

Re: DesktopView current mouseLocation?

John Clonts
Blair McGlashan wrote:

>
> John
>
> "John Clonts" <[hidden email]> wrote in message
> news:[hidden email]...
> > I'm trying to get the current Point representing the mouse location on
> > the entire screen.  Is there a way to do that?
>
> Cursor class>>position
>     "Answer a <Point> containing the current cursor position in screen
> co-ordinates."
>

Perfect! Thanks Blair!

John