QUOTE(epsonstylux @ Jan 3 2014, 01:53 AM)
Guysssss need hwlp urgently
My screen cracked..i think the digitizer is broken
The screen is not responding at all
Is there any apps or method which I can use mouse from pc or directly to the phone to make nandroid backup of my phone?
I am rooted with custom rom. I dont have online nandroid backup installed but I have cmw. I know I can get into fastboot and boot cmw from there but without thr nandroid can I make a nandroid backup via cmw?
If I can use mouse to unlock the screen(just slide gesture) also would be nice since I have few appointments by today and I dont have any means to call them and dont have any spare phone with micro sim. I havent backup my contacts to gmail also

I tried googling xda forum but im just really stressed out now
Cant pickup or make calls cant check whatsapp msg from client
Does anyone tried otg cable with nexus 4 to connect to . Mouse before? Will it work with the latest kitkat?
I still have the warranty. Will lg cover this? If not how much to replace? Sigh might as well get a nexus 5 now
To backup all your data/app/sms:
CODE
adb shell
su
dd if=/dev/block/platform/msm_sdcc.1/by-name/userdata of=/sdcard/data.img
adb pull /sdcard/data.img
To restore it all after you fresh install android:
CODE
adb push data.img /sdcard/
adb shell
su
dd if=/sdcard/data.img of=/dev/block/platform/msm_sdcc.1/by-name/userdata
Make sure you have enough diskspace.
ps: edited for last dd command...

pss: use screencast to control android from mouse. screencast no need root, but to control using mouse, need root:
https://code.google.com/p/androidscreencast/psss: possible to control without root using:
adb input command:
CODE
adb shell input text <string>
adb shell input keyevent <key code number or name>
adb shell input tap <x> <y>
adb shell input swipe <x1> <y1> <x2> <y2>
This post has been edited by cowithgun: Jan 3 2014, 02:03 PM