OSX: Auto-mount Transmit favorite as disk
-- Add the script as a login item to auto-mount Transmit favorite
tell application "Transmit"
set myFave to item 1 of (favorites whose name is "My Favorite")
tell current tab of (make new document at end)
connect to myFave with mount
close
end tell
end tell