[flexcoders] How to declare array class in flex???????Urgently needed

2006-02-10 Thread anil thakur
Hello Sir I have some problem, the description is:- JAVA Flex Int age; var age:number; Private Workgroups []workgroups; publc? Question:- In java we can specify the int age and in flex we declare it by var age:number; In what way we can declare java private

Re: [flexcoders] How to declare array class in flex???????Urgently needed

2006-02-10 Thread Chris Velevitch
var workgroups:Array = new Array(); workgroups[0] = new WorkGroups(); workgroups[1] = new WorkGroups(); // etc Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au -- Flexcoders Mailing List FAQ:

Re: [flexcoders] How to declare array class in flex???????Urgently needed

2006-02-10 Thread Clint Modien
http://livedocs.macromedia.com/flex/15/flex_docs_en/1191.htmOn 2/10/06, anil thakur [EMAIL PROTECTED] wrote: Hello Sir I have some problem, the description is:- JAVA Flex Int age; var age:number; Private Workgroups []workgroups; publc……?