I tried:
let myArray = runtime.objects.Array.getFirstInstance(); let myText= document.getElementById('some text').value; myArray.setAt(0,0,myText);
..but I guess Im not using the array assignment correctly as I get: TypeError: expected finite number
Develop games in your browser. Powerful, performant & highly capable.
Ahh I need to do..
myArray.setAt(myText,0,0);