I’m trying to use in-memory tables in FlexScript to perform some calculations. However, I’m having trouble adding columns and rows to the tables. I don’t want to create Global Tables.
Here’s the script I’ve tried, but the return value is zero:
Table testTable;
testTable.setSize(4,4, DATATYPE_NUMBER);
return(testTable.numCols);
Can anyone help me figure out what I’m doing wrong?