- Create new AppleScript with
ScriptEditor.app
- Copy & Paste
open.applescript
into the script you create
- Save the script as an application
- Open Info.plist which in the application you create (you can find it under
Open.app/Contents
directory)
- Add thoes keys to specify the URL scheme
<key>CFBundleIdentifier</key>
<string>me.senta.AppleScript.Open</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Open</string>
<key>CFBundleURLSchemes</key>
<array>
<string>open</string>
</array>
</dict>
</array>