Re: [flexcoders] enumerable instance properties

2006-03-14 Thread Alisdair Mills
erties and methods of a non-dynamic class. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alisdair Mills Sent: Monday, March 13, 2006 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] enumerable instance properties Hi, I

RE: [flexcoders] enumerable instance properties

2006-03-13 Thread Gordon Smith
groups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alisdair Mills Sent: Monday, March 13, 2006 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] enumerable instance properties Hi, I am trying to use a for in loop to access instance properties in AS3 but it isn't finding any so

[flexcoders] enumerable instance properties

2006-03-13 Thread Alisdair Mills
Hi, I am trying to use a for in loop to access instance properties in AS3 but it isn't finding any so I have a value object public class VO { public var foo : String ; } then if I pass an instance of this and try and access it's properties for ( var prop : String in myVO ) {