Hi again,Why do I get "1180: Call to a possibly undefined method AboutPouup." when I try this code in ControllerMenuItem.mxml?case "link":
{
if (itemValue == "openTitleWindow")
{
var aboutPopup:AboutPopup = new AboutPouup
PopUpManager.addPopUp(AboutPopup,this.parentApplication as DisplayObject,true);
PopUpManager.centerPopUp(AboutPopup);
}else{
navigateToURL(new URLRequest(itemValue));
}
break;
}I created a TitleWindow with name AboutPopup so I don't understand why it doesn't find it. I have some of those popoups in my app and it's the first time I come across this problem.Regards,Manolo