simple idea for bluetooth icon
I have pocket plus and would love to be able to add a short cut icon to turn on and off bluetooth on my today screen. i dont want phonealaram (too much for such a simple idea). maybe even (if i could have found it) the "program" that will run/turn on/off bluetooth as though i was pushing the bluetooth icon in comm manager. i found this, but have no idea what they are saying (i am no where close to a programer lol) thanks...
One touch script
Drop script in programs then copy/past shortcut into windows/start menu
On tap turn BT on and off...
BlueToothON.mscr/BlueToothOFF.mscr
Most be located mortscript folder
For Trigger script to work.
Phil c
################################################## ##
#BLUETOOTH TRIGGER.mscr - Gives blueTooth ON/OFF MSCR LIFE WITH ONE SCREEN TAP
#SLiNG CREATIONS###Surflinez@hotmail.com
#Notes-BUILT TO USE WITH jdcochran/Bluethooth-ToggleON OFF-Rev0
#BlueTooth on/off mscr must be in mortscript folder
#
B = RegRead("HKLM", "System\CurrentControlSet\Control\Power\State" , "Bluetooth" )
If ( B = 1 )
Call Blueon
Else
If ( B = 0 )
Call Blueoff
EndIf
Sub Blueon
CallScript( "\Program Files\MortScript\BlueToothON.mscr" )
EndSub
Sub Blueoff
CallScript( "\Program Files\MortScript\BlueToothOFF.mscr" )
EndS
|