FLEX: popupManager: TitleWindow: how to make the background transparent

apache-flexflex3

I'm using PopupManager to display (not modal) popups in Flex.

How can I make the background of my TitleWindow popup completely transparent?
Now it is semi-transparent.. see picture with semi-transparent background (i.e. I just want the label inside visible):

http://dl.dropbox.com/u/72686/semiTransparent.png

Maybe, instead of making it transparent I could try to reduce the padding, in order to make only the children visible ?

thanks

Best Answer

If you want to make it transparent, add

borderAlpha="0.0"

If you also want to remove the side and bottom borders completely, add

borderThicknessLeft="0" borderThicknessRight="0"

You can't remove the header, even thought there is borderThicknessTop option.
Also, the borderThickness="0" option doesn't work as far as I know.

Related Topic