Software Archive
Read-only legacy content
17061 Discussions

How to add cursor to hand movement.

Mahadeo_W_
Beginner
292 Views

I have already enabled all gesture in my application.I want to add cursor to my application.

How to get hand location point as i want it to assign to mouse movement.

Any help appreciated..

thanks & regard's

Mahadeo W

 

0 Kudos
2 Replies
Khalil_S_
Beginner
292 Views

Using HandData calculate hand location and assign it to mouse using following.

  [DllImport("User32.dll")]

        public static extern bool SetCursorPos(int x, int y);

 

0 Kudos
Khalil_S_
Beginner
292 Views

Using HandData calculate hand location and assign it to mouse using following.

  [DllImport("User32.dll")]

        public static extern bool SetCursorPos(int x, int y);

 

0 Kudos
Reply