开发者

Change blur filter in modal TitleWindows

开发者 https://www.devze.com 2023-03-21 03:07 出处:网络
I create several instances of TitleWindow. And added them on s开发者_运维百科tage by PopUpManager.addPopUp( wnd, root, true );

I create several instances of TitleWindow. And added them on s开发者_运维百科tage by PopUpManager.addPopUp( wnd, root, true ); But how to change blur of madal state?


Try applying the following styles on the window :

modalTransparencyBlur
modalTransparency
modalTransparencyColor
modalTransparencyDuration

You can also set them globally :

    <mx:Style>
        global {
            modalTransparencyBlur: 0;
            modalTransparency: 0.8;
            modalTransparencyColor: black;
            modalTransparencyDuration: 500;
        }
    </mx:Style>
0

精彩评论

暂无评论...
验证码 换一张
取 消