Control Your Mac With Bluetooth Phone
reidconti writes "Ever wanted to control your Mac remotely? Now you can, with the Sony Ericsson Clicker by Jonas Salling. Play MP3s or DVDs, command Keynote and PowerPoint presentations, all from your Sony Ericsson Bluetooth phone. Nifty proximity mode lets you pause your music when you leave the room and automatically resume when you re-enter." It uses AppleScript, to control whatever AppleScript can control.
Bluetooth includes encryption as standard and before a connection can be established both devices must approve.
This software only listens to a bluetooth connection from a specific device which has to have been paired with the Mac before hand.
It's quite safe - robably more so than having WiFi connections.
Think how many businessmen who use WiFi in Hotels etc have firewalls running. My Mac does all the time - even when I'm at home behind a hardware firewall.
Matt Thompson - Actuality - Insert product here.
-DVD player - get back into the menu -Start up the screensaver (for when you leave the range) (make sure screensaver is turned off or two of them will run)
-Telling you when you are in or out of range (so you know how far you can go).This application is so great. The possibilities are endless. -
Boom Shanka
I have proximity locking and unlocking both running beautifully here. 10-12 second delay for either. Big wow factor around the office.
Range on my T68i is way more than 30 feet. Maybe the author will add a range slider on the proximity tab. For unlocking you need something like Extra Suites http://www.kanzu.com/ ($10) or your prefered OSAX that can generate keystrokes. This allows you to enter text via AppleScript as if from the KB and thus unlock the screen. The 'type string' and 'type key' commands are part of Extra Suites.
To lock the screen use this as your action.set previousState to do shell script "defaults -currentHost read com.apple.screensaver askForPassword "
do shell script "defaults -currentHost write com.apple.screensaver askForPassword 1"
tell application "ScreenSaverEngine" to run
do shell script "defaults -currentHost write com.apple.screensaver askForPassword " & previousState
This will not permanently alter the preference you have set in your screen effects panel.
To unlock the screen you can use the following script. NOTE! This requires entering your user PW as plain text into the script. Use this method with caution. A person who gets access to your box could, with the appropriate tools, extract your PW from the preference pane plist and then get access to your box!
Oh, I guess they'd already have that huh? ; )
tell application "Extra Suites"
type key "enter"
delay 1
type string "YourUserPasswordGoesHere"
delay 1
type key "enter"
end tell
Hoping this helps someone wow their boss into mac lust.
Do not mistake understanding for realization, and do not mistake realization for liberation