As a result of a HTTP request I’ve got JSON data in the URLLoader object. I need to put the JSON in a formatted way inside a TextField.
How can I accomplish that this:
[{"id":"barrrrrr","client":"foo"}]
looks like this:
[
{
"id":"barrrrrr",
"client":"foo"
}
]
inside the textfield?
Cheers.
Use the native JSON object in flash player 11+