Music Playlist

[font=Arial]Hi,[/font]

[font=Arial]
I have this music playlist where you can click on a track and it will play a song and show a few details about the song such as the duration, release date etc. [/font]
[font=Arial]I want to do the same but with lyrics but the method I am using below isn’t the best for a lot of words and it gets all messy and not lined up properly.[/font]

[font=Arial] [/font][font=Arial] [/font]

[font=Arial]s = new Sound();[/font]

[font=Arial]s.loadSound(“MyBody.mp3”, true);[/font]

[font=Arial]album="Heavy "[/font]

[font=Arial]currentTrack=“My Body”;[/font]

[font=Arial]released=“09/09/2003”;[/font]

[font=Arial]duration=“4.28”[/font]

[font=Arial]stopped=false;[/font]

[font=Arial]paused=false;[/font]

[font=Arial]stop();[/font]

[font=Arial] [/font]

[font=Arial]Is there a better way of doing this so each track’s individual lyric will appear when the track is selected. [/font]

[font=Arial] [/font]

[font=Arial]Thanks[/font]