Skip to content


Multy Dimensional Arrays 101 Flash MX


Name = new Array ()
Name.First = new Array ("Helmut","Flash");
Name.Last = new Array ("Granda","MX");

trace ("FIrst Name: " +Name.First[0]);
trace ("Last Name: " + Name.Last[0]);
trace("Full Name: " + Name.First[0] + " " + Name.Last[0]);
trace ("FIrst Name: " +Name.First[1]);
trace ("Last Name: " + Name.Last[1]);
trace("Full Name: " + Name.First[1] + " " + Name.Last[1]);

Posted in Flash Bits.

0 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

Some HTML is OK

(required)

(required, but never shared)

or, reply to this post via trackback.