Yes it is legitimate The correct method would depend on what for mat your data previously existed in before placing it in the array
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of CK Sent: Friday, 21 April 2006 11:13 AM To: Flashcoders mailing list Subject: [Flashcoders] Multidimensional Array Hi All, Experimenting with Multidimensional Arrays, would the following be the correct method for populating? [code] //Personal data multidimensional array. var pData:Array = [["lname", "fname"], ["age", "location"]]; // //trace(pData); // //trace(pData[0]); // //trace(pData[1]); pData[0][0] = "Kennon "+"Miller "+"Johnson"+"\n"; pData[0][1] = "Christopher "+"Alice "+"Margie"+"\n"; pData[1][0] = "39 "+"24 "+"36 "+"\n"; pData[1][1] = "CA "+"WA "+"MI"+"\n"; // trace(pData); [/code] Return True, CK Principal/Designer/Programmer -Bushidodeep http://bushidodeep.com/ ______________________________ "Knowing is not enough, you must apply; willing is not enough, you must do." ---Bruce Lee _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

