PlaylistPos(2,2,30,22);
FontRGB(0,0,0);

'NB: DO -NOT- CHANGE POSITION/ORDER OF THE ABOVE LINES, THEY MUST RESIDE AS LINE #1 AND #2!
'(A MORE FLEXIBLE PARSER MIGHT BE INTEGRATED IN A LATER RELEASE.)

'Description of functions:

'PlaylistPos(X,Y,X2,Y2)
	
	X      - X coordinate of the start of the playlist in tile (0-32)
	Y      - Y coordinate of the start of the playlist in tile (0-24)
	X2     - X coordinate of the end of the playlist in tile
	Y2     - Y coordinate of the end of the playlist in tile

	"This function function sets the position of the playlist on the bottom screen. Since my font is 8x8 the quickest way to get correct tilevalue is to take the pixelvalue of X/Y (0-256/0-192), divide by 8, and round up/down as you see fit. Same applies for X2/Y2 too, but be aware that filenames that are longer than the Width will be cropped to fit!"


'FontRGB(Red,Green,Blue)
	
	Red   - Red value in DS-format (between 0 and 31)
	Green - Green value in DS-format
	Blue  - Blue value in DS-format

	"This is the function to select the color of the playlists text. The values should be in DS-format, thats between 0 and 31, where 0 is nothing and 31 is 255. 