RE: [flexcoders] How to find the actual type of a custom flex component?

2009-02-26 Thread Gordon Smith
[mailto:flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com>] On Behalf Of pmotzfeldt Sent: 26 February 2009 07:41 To: flexcoders@yahoogroups.com<mailto:flexcoders@yahoogroups.com> Subject: [flexcoders] How to find the actual type of a custom flex component? Hi, I am won

Re: [flexcoders] How to find the actual type of a custom flex component?

2009-02-26 Thread Jeffry Houser
You should be able to override the className property, something like this: override public function className():String{ return 'VBox' } Whether it is a good idea or not is open to discussion. pmotzfeldt wrote: > Hi, > > I am wondering if anybody knows how I can find the actual class type >

Re: [flexcoders] How to find the actual type of a custom flex component?

2009-02-26 Thread Ashish Verma
t; Behalf Of *pmotzfeldt > *Sent:* 26 February 2009 07:41 > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] How to find the actual type of a custom flex > component? > > > > Hi, > > I am wondering if anybody knows how I can find the actual class type >

RE: [flexcoders] How to find the actual type of a custom flex component?

2009-02-26 Thread Gregor Kiddie
Of pmotzfeldt Sent: 26 February 2009 07:41 To: flexcoders@yahoogroups.com Subject: [flexcoders] How to find the actual type of a custom flex component? Hi, I am wondering if anybody knows how I can find the actual class type of a custom component? By that I mean I create a custom component that i

[flexcoders] How to find the actual type of a custom flex component?

2009-02-25 Thread pmotzfeldt
Hi, I am wondering if anybody knows how I can find the actual class type of a custom component? By that I mean I create a custom component that is a VBox, but I call it MyCustomBox, and whenever I call className on that it returns MyCustomBox, but I want to get the class VBox by any means. Appr