table view with list of songs

I was wondering if anybody could give me an idea of how to fill a table view with a list of songs in a playlist. Song, artist and album is needed. I have a table view with a list of all of the playlists already.

Model: Dual 1Ghz MDD
Browser: Firefox 2.0.0.3
Operating System: Mac OS X (10.4)

As you know, a table view is just a list. For something like this, make a table view in Interface Builder with 3 columns, and use this script to create the list, then load the table as usual:

tell application "iTunes"
	set master_List to {}
	repeat with et in every track in playlist "Bond" --Identify the name of the playlist here
		set end of master_List to {et's name, et's artist, et's album}
	end repeat
end tell
-->{{"*-3-Send", "David Arnold", "Tomorrow Never Dies"}, {"007", "John Barry Orchestra", "James Bond"}, {"A Drive in the Country", "Bill Conti", "For Your Eyes Only (Remastered)"}, {"A View to a Kill", "Duran Duran", "James Bond"}, {"All Time High", "London Symphony Orchestra", "Elevator Bond"}, {"All Time High", "Rita Coolidge", "James Bond"}.............}

Good luck,