PDA

View Full Version : Turning on bluetooth


Jon12345
2nd March 2009, 04:41 PM
Is there a fast way to turn on bluetooth on the Diamond? Whenever I want to use my headset, I have to go to Settings, Communications, bluetooth and its a bit too slow.

Any suggestions or tips?

Thanks,

Jon

defaria
2nd March 2009, 07:14 PM
I use QuickMenu (search the forum) which provides a nice little menu pick for this. Granted you need to select Start: Quick Menu: BlueTooth but then it's right there. It's not like you are selecting some application that will then occupy your screen so that you can toggle something on and then you have to get rid of the application/screen. Plus QuickMenu is a much better start menu anyway!

neomagik
3rd March 2009, 01:00 AM
I use this, set to a soft key with softkey manager. One touch toggle, can't get much quicker!!

MikeKnoop
3rd March 2009, 06:09 AM
thanks for the program - does anyone know a way to hook this exe into an event? Perhaps such as turning on bluetooth when I plug in a USB cable?

-Mike

neomagik
3rd March 2009, 02:43 PM
Download and install mortscript from here http://www.sto-helit.de/index.php?module=page&entry=ms_overview&action=view

Create script as follows:


VariableValue = 0
While (1)

USBState = RegRead("HKLM", "System\State\Hardware", "Cradled")

If (USBState = 1 && VariableValue = 0)
Run "\Windows\Start Menu\Programs\ToggleBTh.exe"
VariableValue = 1
EndIf

If (USBState = 0 && VariableValue = 1)
Run "\Windows\Start Menu\Programs\ToggleBTh.exe"
VariableValue = 0
EndIf

Sleep 2000
EndWhile



Save in Windows\Startup folder.

ICEFACE000
3rd March 2009, 04:02 PM
use advanced config to map one of the soft keys to run the Comm Manger and use the 10 buttons comm manager. this will give you easy access to all communications

Jon12345
10th March 2009, 01:22 AM
What is a softkey?