Disable the blur effect in Flex PopupManager modal background
If you have a stylesheet in your application you can use the following to remove the blur:
modalTransparencyBlur: 0;
}
The other related styles and their default values are shown below:
modalTransparency: 0.5;
modalTransparencyBlur: 3;
modalTransparencyColor: #DDDDDD;
modalTransparencyDuration: 100;
}
It is also possible to set these attributes directly on each Panel in the MXML (or children such at the titleWindow). However, it's much simpler to do it centrally in the stylesheet.
Cheers, Mark



