PDA

View Full Version : Transparent frame background, not transparent text


Athene
10-09-2006, 05:24 PM
I am trying to make the background in a frame transparent, but I still want the text in the frame to be visible. How do I do this?

freeri
10-09-2006, 11:37 PM
FrameName:SetBackdropColor(0, 0, 0, 0);
FrameName:SetBackdropBorderColor(0, 0, 0, 0);

Not sure if the last one is required.

FrameName:SetAlpha(0) sets the transparency for child objects too, so you have to set the BACKGROUND-alpha, instead of the FRAME-alpha.

Athene
11-09-2006, 12:05 AM
Thanks alot, got it working now:)