Hi Lorenzo,
The array issue you originally described is indeed caused by specifics of JScript's array format, which is not Variant-compatible. The dev team is aware of the issue and will try to address it in a future release. Until then, the workaround you and Robert came up with -- create the array in a script variable, modify it as necessary and once it's ready copy it to original project variable -- is the best option.
var arr[];
and then I do:
arr["blabla"] = [1,2,3];
arr["bla bla"] = [1,2,3];
In the local variable panel the variable arr will not display arr["bla bla"]
|
I've forwarded this to the dev team for investigation. Thanks for bringing this up!