Can anyone simplify this script to get of some "say" lines?



tell application "iTunes"
	if player state is playing or player state is paused then
		set track_album to the album of the current track
		delay 1.5
		say "this song is from the"
		say track_album
		say "album."
	end if
end tell


tell application "iTunes"
	if player state is playing or player state is paused then
		set track_album to the album of the current track
		delay 1.5
		tell me to say "this song is from the " & track_album & " album"
	end if
end tell

Awesome, thank you so much!! :slight_smile: