So all in words i am a noob at pulling stuff from my phone so what is the correct way to pull and push to the phone in cmd?
justin
do you have root? start your phone in recover (hold down vol down, call, end)
1. start > run > "cmd"
2. go into the directory where you have the SDK tools saved... (cd <folder>)
3. type in "adb devices" to make sure your phone is listed.
4. type in "adb pull /system/framework/framework-res.apk" - should save into the directory you're in
5. open up the framework-res.apk with 7-zip and go into assets/images
6. drag the haXsung images over to the 7-zip window (over the default) - backup beforehand if you want... (copy to)
7. close up file
8. type in "adb push framework-res.apk /system/framework/framework-res.apk"
reboot and you should be there.

an alternative way to step 8 is to
1. "adb push framework-res.apk /sdcard" - which pushes it to your sdcard
2. "adb shell" - should give you the # access (if you have $, type "su")
3. "cd sdcard" - goes into your sdcard directory
4. "ls -l" to verify file is there
5. "cp framework-res.apk /system/framework/framework-res.apk"
reboot and you should be there.
hope that helps.