Thanks! I'll try it..
D.
-- In [email protected], "Brian Holmes" <[EMAIL PROTECTED]> wrote:
>
>
> On your title window set visible=false and then on the
creationComplete
> event set visible=true;
>
>
> <mx:TitleWindow visible="false" creationComplete="this.visible=true"
> showEffect="{myShowEffect}" >
>
> <mx:WipeDown id="myShowEffect" duration="700" />
>
>
>
> There's a much better way of handling this if you route all title
> window's through a window manager,
> But that should get you started. The problem as you probably
realize is
> that when the window is rendered,
> It's already showing so the show effect either doesn't fire or has
> already fired. (not sure which)
>
> B.