Learn How to Script Porthole
June 2014
Starting with version 1.7.0 Porthole is scriptable using Appleâs AppleScript Editor (or Script Editor in Yosemite). This means that you can automate and toggle certain functions of Porthole without going through the interface.
Index
Use cases
These are a few cases in which scripting could come in handy:
- Automatically connecting to a certain (or every) speaker on startup.
- Chaining several actions in one, such as: starting Spotify, playing a song and then connecting to all your AirPlay devices. You can put that in a single script.
- You could use it to develop a remote control.
- And obviously any case where you want to control Porthole without going through the interface.
Getting started
- Launch Porthole at least once and set it up.
- Start (Apple)Script Editor.app (find it in /Applications/Utilities/(Apple)Script Editor.app).
When you have AppleScript Editor running, paste in the script below to get the name of the first speaker Portholeâs found. Press the big green âRunâ button when youâre done.
tell application "Porthole"
name of first speaker
end tell
As you were probably expecting, Porthole should now be connected to the first speaker it found. Pretty sweet!
Advanced tricks
Say that you always want to connect to a certain speaker when your Mac boots up. There are a few things we need to do for this to work:
- Get a unique identifier for our speaker.
- Use that unique identifier to connect to the specific speaker.
- Run the script on startup.
Getting the unique identifier
Run this script:
tell application "Porthole"
set output to "Speakers:\n"
repeat with sp in speakers as list
set output to output & id of sp & ": " & name of sp & "\n"
end repeat
end tell
It should return something along the lines of this:
"Speakers:
12AB34CD56EF: Boy & Auk's AirPort Express
FE65DC43BA21: AirPort Express
"
Using the unique identifier
he first value is the MAC address and unique identifier of the speaker, weâll use this to pick out a specific speaker to connect to.Letâs pick âBoy & Aukâs AirPort Expressâ in this case. Make sure you replace the id with the value that was returned on your Mac.
tell application "Porthole"
set sp to (first speaker whose id is "12AB34CD56EF")
if sp is not connected then
connect to sp
end if
end tell
And thatâs it, Porthole will only connect to that specific speaker. Run the script to test it.
Run the Script on Startup
You can actually turn Scripts into Applications, which you can add to your Login Items. Perfect, exactly what we need. Before we do this though, lets make a tiny modification to our script.
tell application "Porthole"
activate
delay 10
set sp to (first speaker whose id is "12AB34CD56EF")
if sp is not connected then
connect to sp
end if
end tell
The âactivateâ command will load Porthole if it isnât already running. Then the delay will give Porthole ten seconds to discover any available speakers. After that the script runs like it did before.
To turn this into an app, in (Apple)Script Editor, click File â Export⊠and in the dialog box that opens choose Application under File Format.
Save the file anywhere you like, but remember its location.
Finally, go into System Preferences and select Users & Groups, then Login Items. Press the little + button and pick the Application you just created. Your script will now run at login!
Notifications
Version 1.7.1 and up.
Porthole sends out system wide notifications when an AirPlay speaker appears/disappears/connects/disconnects and when the computer speaker setting is toggled. This removes the need to poll for changes.
To receive these notifications, hook into the NSDistributedNotificationCenter event:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
[[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(handlePortholeSpeakerStateChanged:) name:@"com.dangercove.Porthole.SpeakerStateChanged" object:nil];
}
- (void)dealloc {
[[NSDistributedNotificationCenter defaultCenter] removeObserver:self];
}
- (void)handlePortholeSpeakerStateChanged:(NSNotification *)notification {
NSLog(@"Speaker state changed:\n%@", notification.userInfo);
}
The notificationâs userInfo contains a dictionary with the current speaker setup:
{
speakers = (
{
connected = 1;
macaddress = 12AB34CD56EF;
name = "Danger Cove";
},
{
connected = 1;
macaddress = AB34CD56EF12;
name = SandroTV;
},
{
connected = 0;
macaddress = FE65DC43BA21;
name = "AirPort Express";
}
);
useComputerSpeaker = 0;
}
Reference
These are all the Porthole-specific commands you can use. For a more general AppleScript tutorial, have a look at this guide.
Speaker related
Parameter | Description |
---|---|
speaker | Addresses a single speaker. Properties: id, name, connected, streaming |
every speaker | Addresses all speakers. |
first/second/âŠ/last speaker | Addresses the first/second/etc speaker. You can also use speaker 1,2,3,etc. |
connect to [speaker(s)] | Connect to the specified speaker(s). |
disconnect from [speaker(s)] | Disconnect from the specified speaker(s). |
General
Command | Description |
---|---|
use computer speaker [boolean] | Enable or disable the (connected) computer speaker. |
This is a property. You can set like so:
tell application "Porthole"
set use computer speaker to true -- or false
end tell