--- In [email protected], "markgoldin_2000" 
<markgoldin_2...@...> wrote:
>
> Here is my code:
> 
> var c:Classes = new Classes();
> var popupWindow:TitleWindow = new TitleWindow;  
> this line works fine:
> popupWindow = c.showPopupWindow(DisplayObject(this), saveAsPriceList);
> var saveAs:saveAsPriceList = new saveAsPriceList;
> but this wouldn't compile:
> popupWindow = c.showPopupWindow(DisplayObject(this), saveAs);

try:
//use the full path if this is not in the same
//package as the calling code
var saveAs:Class = saveAsPriceList;

HTH;

Amy

Reply via email to