I am using the below given code to try to make the transparency 0, but I still am unable to make the background become absolutely transparent.
<mx:Style>
global {
modalTransparencyBlur: 0;
开发者_Python百科 modalTransparency: 0.0;
modalTransparencyColor: black;
modalTransparencyDuration: 0;
}
</mx:Style>
How can I fix this.
Regards Zee
Have you tried setting the backgroundAlpha to 0?
backgroundAlpha is a property of your modal component, rather than a css style.
See here for some backgroundAlpha examples:
Flex Examples: backgroundAlpha
Also, a useful tool for playing around with styles and visual properties is FlexSpy. It's a lot like Firebug, in that you can modify styles and properties in real time while your app is running. Download here: FlexSpy
精彩评论