RE: [flexcoders] Re: Extend Array

2009-04-29 Thread Kenneth Sutherland
You need to make your FB project flash 10 enabled. See below http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+ 10?rootCommentId=20480208 http://www.communitymx.com/content/article.cfm?page=2cid=5AC26 From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Extend Array

2009-04-28 Thread Richard Rodseth
I wouldn't extend either of these. Favour delegation over inheritance. On Tue, Apr 28, 2009 at 3:23 PM, Tim Hoff timh...@aol.com wrote: Yep, thought that I could get away with not testing it. Doesn't look like you can extend Array, but you can extend ArrayCollection: *package *{ *

Re: [flexcoders] Re: Extend Array

2009-04-28 Thread Richard Rodseth
Limited time, and not sure what the original goal is. But if the poster needs a Matrix class he can make one that doesn't derive from anything, or that implements an interface. In fact, if you look at flash.geom.Matrix you'll see it derives from Object. Googling composition vs inheritance or