I'm doing this project that I need to save a full character array into a string. I want to have the [] characters in the string.
Example:
aArray = [
[0,0,0,0],
[0,0,0,0],
[0,0,0,0],
[0,0,0,0]
];
myString = aArray.toString();
trace(myString);
In my output I get:
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0...
I want the [] brackets.