Re: [flexcoders] Vectors/Getter And Setters

2008-08-25 Thread Sherif Abdou
can You even use Getter/Setters with Vectors? - Original Message - From: Sherif Abdou To: flexcoders@yahoogroups.com Sent: Sunday, August 24, 2008 1:02 PM Subject: [flexcoders] Vectors/Getter And Setters I am wondering is this allowed, and if it is How do i make it work

RE: [flexcoders] Vectors/Getter And Setters

2008-08-25 Thread Gordon Smith
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Vectors/Getter And Setters can You even use Getter/Setters with Vectors? - Original Message - From: Sherif Abdou mailto:[EMAIL PROTECTED] To: flexcoders@yahoogroups.com mailto:flexcoders@yahoogroups.com

Re: [flexcoders] Vectors/Getter And Setters

2008-08-25 Thread Sherif Abdou
Smith To: flexcoders@yahoogroups.com Sent: Monday, August 25, 2008 3:56 PM Subject: RE: [flexcoders] Vectors/Getter And Setters can You even use Getter/Setters with Vectors? If you can't, it's a bug. I keep getting Internal error: type for Property '{name}' is unreachable

[flexcoders] Vectors/Getter And Setters

2008-08-24 Thread Sherif Abdou
I am wondering is this allowed, and if it is How do i make it work since I keep getting Internal error: type for Property '{name}' is unreachable. private var contentVec:Vector.UIComponent; public function get content():Vector.UIComponent { return contentVec; } public function set

Re: [flexcoders] Vectors/Getter And Setters

2008-08-24 Thread Sherif Abdou
content is a DefaultProperty so I don't need to include it in the mxml - Original Message - From: Sherif Abdou To: flexcoders@yahoogroups.com Sent: Sunday, August 24, 2008 1:02 PM Subject: [flexcoders] Vectors/Getter And Setters I am wondering is this allowed