You have access to styles in the tag that affect Modal.
You should be able to do this:
_zoomImgPopUp.setStyle("modalTransparency",1); _zoomImgPopUp.setStyle("modalTransparencyBlur",3); _zoomImgPopUp.setStyle("modalTransparencyColor",
You can put this in your application / component / module, which refers to the popup.
<fx:Style> @namespace s library://ns.adobe.com/flex/spark; @namespace mx library://ns.adobe.com/flex/halo; global { modal-transparency: 1; modal-transparency-blur: 2; modal-transparency-color: #ff0000; } </fx:Style>
source share