Slashdot Mirror


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.

3 of 69 comments (clear)

  1. Re:Hmmm... by matthew.thompson · · Score: 5, Informative

    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.
  2. Some Additional Applescripts by thefinite · · Score: 5, Informative
    Here are some scripts that add to its functionality:

    -DVD player - get back into the menu
    tell app "DVD Player" to go to the main menu
    -Start up the screensaver (for when you leave the range)
    tell app "ScreenSaverEngine" to activate
    (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).
    say "You are out of range"
    say "You are in range"
    This application is so great. The possibilities are endless. -
    --
    Boom Shanka
  3. Scripts to automatically lock & unlock your sc by blootooth · · Score: 5, Informative

    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