QUOTE(mystNZ @ Mar 17 2008, 16:52)

Sorry, my mistake in naming it - I AM using Track Display panel. But I still cant get it to be transparent...
The whole idea behind all this, is that I wanted to make a transparent "pause" image, ala Mac OS X, appear over the config when on pause...
Did you take a look at the PanelsUI reference? All you have to do is change the Track Display code. When creating a new Track Display panel it contains the code
CODE
$drawrect(0,0,0,0,pencolor-null brushcolor-SYSCOL-15)
changing it to
CODE
$drawrect(0,0,0,0,pencolor-null brushcolor-SYSCOL-15 alpha-150)
makes the rectangle transparent. It's all on the PanelsUI wiki page.