Question
Load and display data from JSON file.
So I have this json file with a name demo.json
It is basically a notepad file with text:
{
"type":"Toy",
"animal": "Bear",
"data": {
"name": "Timmy",
"color": "Brown",
"price": "10",
"madein": "USA"
}
}
And I need this data to be loaded and displayed in flash swf file. Maybe there is someone who knows how it could be done? 