[Scripting] Is Settings Object limited don't take array as a value?
I just tried to insert an array in setting Object when saving settings. That doesn't make any error. But when I tried get the settings it just returning the string "Array".
This is what I inserted,
app.settings.saveSetting("TestSettingsObject", "ArrayOfValues", ["valueOne", "valueTwo",true]);
This is what I get when I tried get the values in settings
var values = app.settings.getSetting("TestSettingsObject", "ArrayOfValues");
alert(values);
It just alerted "Array" instead of actual array values. What Am I doing wrong? or Settings Object won't just take arrays?