This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- TweetSongViaTweetbot.applescript | |
-- Copy title, artist, album and year of playing song from iTunes to Tweetbot | |
-- Author: Sascha Foerster | |
-- based on script from: Romain Briche | |
-- iTunes and Tweetbot active? | |
tell application "System Events" | |
if not (exists application process "Tweetbot") or not (exists application process "iTunes") then | |
display alert "iTunes and Tweetbot required" message "You have to launch iTunes and Tweetbot before executing script" | |
end if |