RealMagisterLudi
I use this for loading json files to arrays:
Add the AJAX object to your project.
Create yourArray object.
Add your.json file to your project files.
1) System| On (trigger): AJAX| Request your.json file (tag "your")
2) AJAX| On "your" completed: yourArray| Load from JSON string AJAXLastData
Make sure your json file is formatted like so for a 3D array:
{
"c2array":true,
"size":[2,3,4],
"data":[
[
[,,,],
[,,,],
[,,,]
],
[
[,,,],
[,,,],
[,,,]
]
]
}