Question about multidimensional arrays

2005-03-08 Thread nostra72
I have heard its impossible to make a multidimensional array in Flex ifthis is the case whats the best alternative. Like say you want to make an array of buttons say and you want one dimention to be the label and anotherto be the visiblity whats the best way to go about it?

RE: [flexcoders] Question about multidimensional arrays

2005-03-08 Thread Tracy Spratt
create the array of column values, then push it onto the array of rows. Tracy From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 10:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Question about multidimensional arrays I have heard its

Re: [flexcoders] Question about multidimensional arrays

2005-03-08 Thread JesterXL
][c] = whichValue;}function getCell(r:Number, c:Number):Number{var cellValue = this[r][c]return cellValue;}} - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 08, 2005 10:17 AM Subject: [flexcoders] Question about multidimensional arrays

Re: [flexcoders] Question about multidimensional arrays

2005-03-08 Thread nostra72
I take it I put everything on an AS file right