Thanks for the suggestion. But, I'm trying to initialize to multiple
different values, not all the same value. e.g. {1,1,1,2,2,2}
The closest thing that I've found so far (haven't yet verified that
this works) is the following:
EnableScript("jscript");
myValues[0] = 0;
myOtherValues[0] = 0;
<%
jsMyValues = new Array(1,1,1,2,2,2);
jsOtherValues = new Array(2,2,2,1,1,1);
AFL("myValues") = jsMyValues;
AFL("myOtherValues") = jsOtherValues;
%>
// AFL arrays are initialized from this point on...
Thanks,
Mike