On Sun, Dec 28, 2008 at 5:13 AM, Dan Vega <[email protected]> wrote: > I get a compile time error if i do this > > _renamedir = new RenameDirectory > //add modal window > PopUpManager.addPopUp(_renamedir,Application.application,true); > //center modal window > PopUpManager.centerPopUp(_renamedir); > > > *** Implicit coercion of a value with static type object to possibly > undefined type flash.display.DisplayObject
You'll have to cast it to DisplayObject then. PopUpManager.addPopUp(_renamedir,DisplayObject(Application.application),true); --

