Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Created January 7, 2014 08:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rummelonp/8296030 to your computer and use it in GitHub Desktop.
Save rummelonp/8296030 to your computer and use it in GitHub Desktop.
iTunes の曲情報を Tweetbot for Mac で投稿するやつ
tell application "iTunes"
set strName to name of current track
set strArtist to artist of current track
set strAlbum to album of current track
end tell
set the clipboard to "Now Playing: “" & strArtist & "” / “" & strName & "” from “" & strAlbum & "”"
tell application "Tweetbot"
activate
end tell
tell application "System Events"
keystroke "n" using command down
keystroke "v" using command down
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment