[flexcoders] probably-stupid AS3 question

2006-05-19 Thread Josh Santangelo
I'm new here, as will be made clear by the beginner-level of my question... I have a TitleWindow component in SellerEdit.mxml: mx:TitleWindow ... mx:Script ![CDATA[ public var seller:Object; ]] /mx:Script /mx:TitleWindow And from my application, I create it: __editWindow =

Re: [flexcoders] probably-stupid AS3 question

2006-05-19 Thread Michael Schmalle
Oh, morning, my EYES! I see you casted it but to the SellerEdit's superclass which does not hold seller only SellerEdit does not TItleWindow. __editWindow = SellerEdit(PopUpManager.createPopUp(this, SellerEdit, true)); or __editWindow = PopUpManager.createPopUp(this, SellerEdit, true)

RE: [flexcoders] probably-stupid AS3 question

2006-05-19 Thread Gordon Smith
@yahoogroups.com Subject: [flexcoders] probably-stupid AS3 question I'm new here, as will be made clear by the beginner-level of my question... I have a TitleWindow component in SellerEdit.mxml: mx:TitleWindow ... mx:Script ![CDATA[ public var seller:Object; ]] /mx:Script /mx:TitleWindow And from