So I wanted to listen to audio through my bt. I downloaded BT Toggle and was trying to get that to work. Well it worked for about 10 seconds then it would revert to the speakers.
What worked was turning "hands free" on when you're in the softkey section of the phone. Now it works.
Does anyone know how I can use the bt headset in a similar fashion on my desktop pc running XP.
Interestingly I'm still have this issue. When I switch to audio through my BT headset, it works for about 10 seconds then it switches back to the speakers.
I have verified that "hands free" is enabled on the phone. Any one else that has run into this?
OK, I found what was causing the issue. Even though it switches to the Audio Gateway, the registry entry:
HKLM\Software\OEM\VoiceCommand\VoiceCmdDuration
is set to 10 seconds. That means that it times out after 10 seconds. One was around it is to set is to something much longer, such as 86400 (or 24hours).
I setup a MortScript to do this automatically.
#Toggler BT Headset Functionality
#Runs the BTtoggle application which switches between Audio Gateway and Voice Commands
RunWait( "\Program Files\BTToggle\BTToggle.exe" )
#Determines which mode and sets duration appropiately
If (RegRead("HKLM","Software\OEM\VoiceCommand","LaunchApEnable") = 0)
RegWriteDword ("HKLM","Software\OEM\VoiceCommand","VoiceCmdDuration",86400)
Else
RegWriteDword ("HKLM","Software\OEM\VoiceCommand","VoiceCmdDuration",30)
EndIf