hack

Registry edit to enable A2DP audio while playing video on Windows Phone 7

2-26-07-dr-bt21gA repeated annoyance of some Windows Phone 7 owners is that when using A2DP sound over Bluetooth, this will be disabled when playing video.

Of course the reason for this is somewhat understandable – when decoding video, transcoding sound to the A2DP audio codec takes processor cycles which then lead to sound dropping out or low frame rate for video.

If however you want to take your chances and have an Interop unlocked device or a device with a built-in registry editor like some LG ones, Fabcal has a simple registry edit which will fix the issue.

With your unlocked handset and WP7 root tools or other registry editor, edit:

HKLM\Software\Microsoft\Zune\Playback\Video\A2DP\CapsSet1

Change dword value DisableA2DPPLayback from 1 to 0

Reboot immediately afterward and enjoy Bluetooth Stereo Audio playback while watching video.

Note that as the Bluetooth antenna is often the same as the WIFI antenna they can interfere, making the solution better for playing local content than streaming content from the internet.

Read more in this XDA-Dev thread for methods of editing your registry on Windows Phone 7.

8

Bootloader hack may bring Android dual-boot to Windows Phones

focusdb

It remains to be seen how desired this is, but work by the Dark Forces Team to port the the MAGLDR bootloader to the Samsung Focus may mean Android dual-boot could be coming to certain Windows Phone 7 handsets.

This would result in a similar situation to the HTC HD2, which it seems has been hacked to run every mobile OS under the sun.

The work is being initially done on the Samsung Focus v1.3, but Cotulla writes that the next version will support the Samsung Focus 1.4 and Samsung Omnia 7 also.

Have any of our readers been waiting for this development? Let us know below.

Via Slashgear and WPCentral.com

32

Game Review: Kinectimals

Kinectimals for Windows Phone is a stand-alone game that has optional integration with the Xbox 360 version.

Overall Score: 3/5

Unfortuantely, Kinectimals on WP7 is nothing impressive. Pass it up unless you have young kids or have $2.99 you don’t care about.

Gameplay: 3/5

When you think of Kinectimals, you imagine a fully immersive and intuitive game. When you play Kinectimals on Windows Phone, you don’t experience a single immersive element, even though they could have used the accelerometer and microphone to make it a better game. It’s disappointing. Once you get past that point, the game isn’t that bad, but it also isn’t that great. The game has some entertaining challenges where you either play fetch with your lion, make him jump the rope, or make him do tricks. These are the heart of the game. Fetch is basically a dumbed down version of Paper Toss, and isn’t as fun. The tricks mode is alright but some of the gestures like the Sit gesture doesn’t work well. However, the jump rope is pretty cool and becomes challenging when the speed of the rope rapidly changes. You can also feed your pet lion, clean him, buy him collars and clothes, and buy him new toys. And there’s also the camera mode where you can take a picture and virtually place your lion in it. Overall, the gameplay is interesting, but nothing super fun. Continue reading

9

Tip: Smart work-around allows screen capture from XNA Games also


We recently saw the release of a screen capture tool for Windows Phone 7 which allowed screens from silverlight applications to be saved.

The tool did not however work for XNA games, merely producing black pictures.

Nanapho.jp however thought of a creative work-around.  By holding down the back button, the screen shots can be taken from the multi-tasking screen, where the OS itself does not seem to have an problem capturing screen shots of games, videos and even the camera viewfinder.

Screen shots are at a reduced size of 432 × 259, but that of course is still perfectly fine for illustrating something on the web, and miles better than taking a photo of the screen.

Read more about this simple ‘hack’ at Nanapho.jp here.

1

Homebrew Folders for WP7 Mango released

WindowsPhoneHacker have released their promised homebrew hack for Windows Phone 7 which brings Folders to the home screen to unlocked Windows Phone 7 handsets.

The app needs:

  • Developer/Chevron/etc unlocked phone. This should be less of an issue once ChevronWP7 Labs is released
  • Windows Phone 7.5 Mango (for the secondary tiles)

Setting up and adjusting the folders  need to be done on the desktop, as demonstrated in the video above.

Read more about the setup and download the app, if that is your thing, at WindowsPhoneHacker here.

3

Homebrew Start page Folders on Mango demoed

Windows Phone Hacker have uploaded this video demo of their folder hack on Windows Phone 7.5.

The hack only needs a developer-unlocked device, and WPH are promising a release soon.

What do our readers think? Let us know below.

11

Neat hack to restore Forward and Find in Page to IE9 Mobile

Bookmarklets are very useful on the desktop, and it turns out they work equally well in IE9 Mobile.

Gooddaytodie on XDA-Dev has crafted these JavaScript bookmarklets to restore Forward and Find in Page functions removed with the upgrade to Mango.

To add the Forward function:

Forward

  1. Go to Internet Explorer 9 Mobile, tap the “…” to bring up the menu, and tap “add to favorites” (it doesn’t matter which website you do it on)
  2. Change the “Name” field to “Forward” (or to make it stay at the top of the list, use “! Forward”)
  3. Change the “Web address” field to the following code:
    javascript:history.forward()

The code for adding find in Page is a bit more complicated, but the procedure is the same.

Find On Page

  1. Go to Internet Explorer 9 Mobile, tap the “…” to bring up the menu, and tap “add to favorites” (it doesn’t matter which website you do it on)
  2. Change the “Name” field to “Find on page” (or to make it stay at the top of the list, use “! Find on page”)
  3. Change the “Web address” field to the following code (use Copy and Paste on your phone!):
    javascript:(function(){function G(){var pf=doc.getElementById('pf');var qt=doc.getElementById('qt');if(null==pf){pf=doc.createElement('div');pf.id='pf';var s=pf.style;s.position='absolute';s.zIndex='99';s.top=(scT||scBT)+'px';s.left=(scL||scBL)+'px';s.width='100%';s.backgroundColor='#FFFF00';pf.appendChild(doc.createTextNode('Search: '));qt=doc.createElement('input');qt.id='qt';qt.type='text';pf.appendChild(qt);var sb=doc.createElement('input');sb.type='button';sb.value='Find';sb.onclick=function(){P(qt.value)};pf.appendChild(sb);doc.body.appendChild(pf);}else{pf.style.display='inline';count=0;}}function P(s){document.getElementById('pf').style.display='none';if(s==='')return;var n=srchNode(document.body,s.toUpperCase(),s.length);alert("Found "+count+" occurrence"+(count==1?"":"s")+" of '"+s+"'.");pf.parentNode.removeChild(pf);return n;}function srchNode(node,te,len){var pos,skip,spannode,middlebit,endbit,middleclone;skip=0;if(node.nodeType==3){pos=node.data.toUpperCase().indexOf(te);if(pos>=0){spannode=document.createElement("SPAN");spannode.style.backgroundColor="red";middlebit=node.splitText(pos);endbit=middlebit.splitText(len);middleclone=middlebit.cloneNode(true);spannode.appendChild(middleclone);middlebit.parentNode.replaceChild(spannode,middlebit);++count;skip=1;}}else{if(node.nodeType==1&&node.childNodes&&node.tagName.toUpperCase()!="SCRIPT"&&node.tagName.toUpperCase!="STYLE"){for(var child=0;child<node.childNodes.length;++child){child=child+srchNode(node.childNodes[child],te,len);}}}return skip;}var count=0,scL=0,scT=0,scBL=0,scBT=0;var w=window,doc=document;if(typeof doc.body!='undefined'&&typeof doc.body.scrollLeft!='undefined'){scBL=doc.body.scrollLeft;scBT=doc.body.scrollTop;}if(typeof doc.documentElement!='undefined'&&typeof doc.documentElement.scrollLeft!='undefined'){scL=doc.documentElement.scrollLeft;scT=doc.documentElement.scrollTop;}G();})()

Thanks to LiveSide.net for creating the simple to use instructions.  Video demo by 1800pocketpc.com

8

Pandora For Windows Phone Proof Of Concept

Windows Phone and Silverlight developer Justin Angel took some time to make a proof of concept of Pandora Internet radio service working on a Windows Phone devices.

He dissected the Pandora AIR app to know how it works and found that  it’s all JSON authentication and MP4′s. This can be easily ported to Windows Phone devices,and to demonstrate that he even did a Proof of concept XAP that clearly shows pandora running on Windows Phone devices.

WPCentral added this video above of the XAP in question. You can even try the XAP here.

Of course this raises the question – if its so easy to support Windows Phone 7 why is Pandora not doing it already …?

2

How to Enable Samsung AllShare DLNA app on the Samsung Omnia 7 and Samsung Focus

When the Samsung AllShare DLNA app showed up in marketplace we were all pretty excited, but it turned out it did not work on the Samsung Omnia 7, terminating with an error.

It turns out the app is in fact fully functional, suggesting the error was put in place to keep older generation devices out of the equation.

imageTo get access to the app, follow these simple steps discovered by monwindowsphone.com.

  • Download the application AllShare Samsung
  • The launch and press the “home” phone before the error message appears
  • Return the application by holding down the “back” button and using the multitasking
  • You are now in the application
  • You have to login to your computer or your TV (set to the first DLNA) and select the media content to your device for viewing

Great news for Samsung Omnia 7 users, as the app clearly works very well, as can be seen in the video, and it does make Samsung look a bit underhanded.

Update: David on twitter says it works on his Samsung Focus also.

Samsung All Share can be found in Marketplace here.

15

WindowsPhoneHacker promises enabling Internet Sharing on your Samsung phone is as easy as 1,2,3,4,5

imageWindowsPhoneHacker have simplified the guide for enabling Internet Sharing on your unlocked Samsung Windows Phone 7 handset to 5 easy steps taking 3 minutes.

The steps are:

  1. Download DiagProvXML and Samsung Tools
  2. Deploy both XAPs to your phone
  3. Run DiagProvXML and hold down on the Internet Sharing item, press Execute
  4. Close (press Back) DiagProvXML, and run Samsung Tools. Press Apply to set Auto Data Config.
  5. Your phone will reboot, and everything should work from there on it.

Find the download links at WPH here.

18

Hack to enable internet sharing on the Samsung Omnia 7 now available

image

Thanks to XDA-Developer member OndraSterthere is now a hack available to enable internet sharing on Samsung Omnia 7’s running Mango.

Interestingly the hack confirms Microsoft’s assertion about drivers, as the hack does not work on HTC handsets. The hack also reveals that there is vestigial support for Bluetooth tethering, but that this does not work.

The hack also disables the phone from checking for carrier provisioning for tethering, but this of course does not mean you will still not be charged.

The hack is a bit too complex to explain here, involving unlocking the handset, provisioning the device, replacing files and editing the registry, so really only for expert users.

Head over to XDA- Developers for full instructions.

Thanks RyoTGZ for the tip.

14

HTC Mango ROMs leak for the HTC Mozart, HTC HD7, HTC 7 Trophy and Verizon Trophy and HTC 7 Pro leak on XDA-Dev

With the date of the Mango update rolling on closer, it seems harder and harder for HTC to keep a lid on their ROMs.

A pile of ROMs for HTC handsets have just leaked on XDA Dev, including for the HTC Mozart, HTC HD7, HTC 7 Trophy and Verizon Trophy and HTC 7 Pro.

RUU_Gold_S_HTC_Europe_3.02.401.01_Radio_5.69.09.29 a_22.50.50.21_Signed_GOLD_RELEASE.exe
RUU_Mozart_S_HTC_Europe_4.06.401.00_5.69.09_RELEAS E.exe
RUU_Mozart_S_HTC_RUS_4.06.411.00_5.69.09_RELEASE.e xe
RUU_Schubert_S_HTC_Europe_4.05.401.02_Radio_5.69.0 9.29a_22.50.50.21_Signed_SCHUBERT_RELEASE.exe
RUU_Spark_S_HTC_Europe_4.06.401.00_5.69.09_RELEASE .exe
RUU_Spark_W_S_VERIZON_WWE_2.01.605.04_2K_new_parti tion_RELEASE.exe

Hackers do however have to be careful, as any devices with HSPL installed will be bricked if they attempt to install the ROMs.  Read the associated thread for the solution to the issue.

We suggest instead however that  users hang on for the official push, which cant be far away.

Via Pocketnow.com

8

DFT and Orange Team together create HTC HD2 ROM which can be updated normally by Microsoft

image

The Dark Forces Team and Orange Team have combined their forces and achieved the seemingly impossible – they have created a ROM for the HTC HD2 which can be updated normally like any other Windows Phone 7 handset over the Zune desktop client.

Beyond this the ROM also retains Root and ChevronWP7 status, meaning users are both free to edit the registry and side-load applications.

Lastly the ROM also allows custom packages to be side-loaded via Zune, making for the ultimate custom ROM machine.

The teams report this hack could be a model for all other Windows Phone 7 handsets, throwing the door open for wide customization without the fear of losing future updates from Microsoft

At present the process of updating the HTC HD2 is long, complicated and tedious, and is not recommended for casual users. It will also lock your SD card to Windows Phone 7, which can only be undone by a Nokia N97, which would prevent dual booting with Android for example.  The teams are working on a simpler method, and suggest casual users hang tight for this.

Braver users can read more in this xda-developers thead.

Thanks Milad for the tip.

10

Scan QR Codes, UPC, EAN, Code 39/128 or ITF barcodes on your Windows Phone 7 to find best prices online. Enjoy slots? Blackjack? Video Poker? Play Crazy Casino FREE! #1 FREE Solitaire on WP7 If your a fan of Pong then you will love this game. Heavenly Skies. Save the universe! Are you ready? A rewarding mix of match 3 and tetris gameplay Free, Live Tile support for Word Of The Day and so much more. Why NOT try it out? Set up reminders with only two taps. Supports also text reminders and voice reminders. Download the best puzzle game in WP7 Marketplace for FREE! Are you a good Alchemist ? Use your brain to discover Atomic Energy, Chuck Norris, Angry Birds and 1400 more ! Fun puzzle game with over 150 levels! Fully featured, beautifully designed WP7 YouTube app. u.n.i MEGA PACK (FREE), the ultimate addictive top GAMES bundle for Windows Phone 7! 7+ and growing! Highly addictive word game designed for adrenaline junkies. Practice locally, but then are you fast enough to compete online? Google RSS reader Windows Phone WP7 The smartest Google reader app. Air Soccer Tour Air Soccer Fever - Realtime Online Multiplayer casual soccer game for FREE Beat the Story Mode. When your done Bring your skill online. Rank up by winning online matches. Have 1 on 1's with anyone! Global Online Multiplayer! Newest devices leaks, online charts and ultimate performance benchmark for every Windows Phone. Every day, get great app deals from Windows Phone developers pushed to you! Quick Tiles, a fully featured live tile editor for Windows Phone. Great sports app for NFL, NBA, MLB, NHL. Pin scores/games to live tile on your home screen. MobileFax gives you the opportunity to send fax pages from your mobile phone anytime, anywhere ! WP7 Exclusive version of Hanging with Friends Fabulously fun, lovable, crazy! Bubble Pong Championship A remake of the classic snake game. The snake wants to grow so don't wait and help her!

Promote your app on WMPoweruser.com
Wholesale Cell Phones

Nokia LCD, Flex Cable,Wholesale phone partstrusted supplier.

Find the latest mobile phones at the cheapest prices at mobilephones.org.uk

Cell Phone Accessories

canon dslr cameras
See The Smartphone Database for the latest smartphone specs.

Windows Phone 7 Apps