View Single Post
  #1 (permalink)  
Old 03-22-2007, 03:30 PM
friguy3's Avatar
friguy3
Halfway to VIP Status
Offline
Location: Freehold, NJ
 
Join Date: Feb 2007
Posts: 706
Reputation: 135
friguy3 is keeping up the good workfriguy3 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Send a message via AIM to friguy3 Send a message via Yahoo to friguy3
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
Reply With Quote