Igor
Igor

Reputation: 373

Change blur filter in modal TitleWindows

I create several instances of TitleWindow. And added them on stage by PopUpManager.addPopUp( wnd, root, true ); But how to change blur of madal state?

Upvotes: 1

Views: 206

Answers (1)

Nate
Nate

Reputation: 2881

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>

Upvotes: 2

Related Questions