[WUT] Adam just read these. https://studio.code.org/docs/ide/applab/expressions/getKeyValue https://studio.code.org/docs/ide/applab/expressions/setKeyValue
[WUT] Adam -wyi What I usually do is define a variable at the start of the program, and in the draw loop, I have it call getKeyValue to get... well, whatever you need to get, and then set the variable to the response.
[WUT] Adam -wyi var score = 0; function draw() { getKeyValue("score", function (rec) { score = rec; }); }