set thelist to ""
tell application "iTunes"
set h to selection of browser window 1
set i to 1
repeat with s in h
set thelist to thelist & i & ". " & name of s & " -- " & artist of s & " -- " & album of s & return
set i to i + 1
end repeat
end tell
tell application "Mail"
--close every window
set newMessage to make new outgoing message with properties {content:thelist as text}
tell newMessage
set visible to true
Your email is never published nor shared. Required fields are marked *
You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
CAPTCHA: + 5 = eight
Notify me of followup comments via e-mail
Subscribe without commenting E-Mail:
iTunes Titelliste als Email veschicken
set thelist to ""
tell application "iTunes"
set h to selection of browser window 1
set i to 1
repeat with s in h
set thelist to thelist & i & ". " & name of s & " -- " & artist of s & " -- " & album of s & return
set i to i + 1
end repeat
end tell
tell application "Mail"
--close every window
set newMessage to make new outgoing message with properties {content:thelist as text}
tell newMessage
set visible to true
end tell
end tell