RE: [flexcoders] SOLVED: How do I tell what I clicked on?

2007-04-10 Thread Gordon Smith
nt: Tuesday, April 10, 2007 1:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] SOLVED: How do I tell what I clicked on? actually i use name property to check dynamically created components' types when i need to handle them. so can you briefly explain why do you recommend

RE: [flexcoders] SOLVED: How do I tell what I clicked on?

2007-04-10 Thread Alex Harui
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yiðit Boyar Sent: Tuesday, April 10, 2007 1:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] SOLVED: How do I tell what I clicked on? actually i use name property to check dynamically created components' types when i need to

Re: [flexcoders] SOLVED: How do I tell what I clicked on?

2007-04-10 Thread Yiðit Boyar
ogroups.com Sent: Tuesday, April 10, 2007 9:01:02 AM Subject: RE: [flexcoders] SOLVED: How do I tell what I clicked on? In general, the Flex framework expects to own the 'name' attribute and we don't recommend that developers use it for their own

RE: [flexcoders] SOLVED: How do I tell what I clicked on?

2007-04-09 Thread Gordon Smith
In general, the Flex framework expects to own the 'name' attribute and we don't recommend that developers use it for their own purposes. It's trivial to subclass Sprite and add an id: public class SpriteWithID extends Sprite { public SpriteWithID() { super(); } public