When receiving an array from flash, in C, how do I populate that array when its size isn't constant but the values types are?
In Alchemy's documentation, the example given is:
S3_ArrayValue(arr, "IntType, StrType, DoubleType", &arg0, &arg1, &arg2);
But this means that if I my array is of size 100, I need to create a string describing each of the cells types.
Isn't there a way to populate it by saying something like "fill the following 'int * array', with the first 100 value from this AS3_Val int array?"