I'm having difficulties coding nested arrays, ie. it just can't be done.
Eg. var state = [[],[],[],[]];
Eg2. var r = [key[4*i], key[4*i+1], key[4*i+2], key[4*i+3]];
I get syntax errors on all attempts. What is wrong with these two statements?
yet, in this example, I don't get syntax errors
eg. var state = state[a[1],b[2],c[3],d[4]];
This all stems from trying to output a textblock encrypted via AES to launch a file. Can a custom job be done? Can OpusScript be fixed to instantiate an empty nested array?
I have full JS's of what I need.
|