1
votes

The flex title window component is nice and all, but before it shows up it insists on blurring out the background of your window if it's set to modal. What if I want it to just show up immediately or at least speed it up so that the user doesn't have to wait around to enter data. Am I going to have to build a custom component based on TitleWindow to get this or not have it be modal? If I were to do that could I extend current TitleWindow or just copy out the source directly?

2
How are you creating the title window? Are you using popup manager to do it? The blur normally occurs when you set the 'modal' flag when creating a popup. If you remove that, the blur won't occur. - J_A_X
That is good to know! I want it to be modal, though... - Damon

2 Answers

4
votes

Play with Application styles, such as modalTransparencyDuration. Yes, you can apply those in the CSS:

global {
    modalTransparencyBlur:      2;
    modalTransparency:      0.8;
    modalTransparencyColor:     #000000;
    modalTransparencyDuration:  500;
}
0
votes

In your PopupManager set the modal to false.This will allow the user to interact with other popups.

PopUpManager.addPopUp(titleWindow, this, false);