Ik ben bezig met een AppleScript dat de gegevens van een iTunes track weergeeft, maar krijg de weergegeven tekst niet 'wrapping', kan iemand vertellen of er een teken is dat aangegeven kan worden waardoor de string op dat moment waar het teken gedefinieerd staat afgebroken wordt en naar een volgende regel gaat en verder loopt?
Hieronder een stukje uit het script:
tell application "iTunes"
set _tab to " " as string
set _dot to " " as string
set _title to the name of the current track
set _artist to the artist of the current track
set _album to the album of the current track
set _stream to the current stream title
set _genre to the genre of the current track
set _comment to the comment of the current track
set _string to _title & _tab & _artist & _dot & _album & _tab & _stream & _genre & _comment
return _string
end tell