Hi,
this depends on the OS of your PC.
For windows you had recognised that your mouse cursor is not part of the 
captured screen. You have to capture the mouse yourself.
        POINT cursorPos;
        GetCursorPos(&cursorPos);
        float x = 0;
        x = cursorPos.x; 
        float y = 0;
        y = cursorPos.y; 

and transmit the data.

On Tuesday, March 13, 2012 7:51:50 AM UTC+1, muhamma...@hotmail.com wrote:
>
>  existing remote control application? Is there any application of this 
> type. but i want to create my on app. please can you help me how to get the 
> control of my mouse. Thanks for your reply
>
>
> Regards,
>
> umer
> ------------------------------
> Date: Mon, 12 Mar 2012 13:18:48 -0700
> From: l...@bendlin.us
> To: android-developers@googlegroups.com
> Subject: [android-developers] Re: Desktop Sharing of my pc on my Android 
> mobile??
>
> uhm... you use one of the existing remote control applications?
>
> On Monday, March 12, 2012 11:21:05 AM UTC-4, muhamma...@hotmail.com wrote:
>
> Hi, 
>        I am creating an app to share my pc desktop on my android 
> mobile. Now i am receiving the images from my pc on my mobile, but not 
> the control of my mouse, Please can anyone tell me how to get the 
> control of my mouse to handle my pc through my mobile. 
>
>
> Thanks and Regards, 
>
> umer
>
>
> -- 
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>  

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to