I have the following JSON string:
"["Dog","Cat","Mouse","Monkey","Horse"]"
I want to create a string array in ActionScript from this. Is this possible in AS3?
You can use a JSON parser like as3corelib to extract the data.
example:
var results:Array = JSON.decode(urlloader.data).result;
for each(var youritem:Object in results) {
trace(youritem.codeD);
}