So I found out you can include javascript to change PAGETEXT, for example like
$PAGETEXT:= "(script)
bla bla bla some cool js code....
(/script)"
And it works for adding text or buttons or whatever. But is there a way to use js to change regular variables? I tried
%VAL:="(js code that returns number, for example (script)document.write(7);(/script))"
When I try to do this it stores 0 in %VAL, I guess because everything inside the quotation marks is translated to a string.
The same goes for changing DEST:
$DEST:= "@P"+"7"
works well, but
$DEST:= "@P"+"(script)document.write(7);(/script)"
doesn't.
Does anyone know how to change other variables than PAGETEXT with js? Or alternatively how to use js variables to change pages in the storygame- because the main reason I need to store the js variables in the storygame %VARIABLES is to use them to change to other pages. Plus I'm not sure if the js variables get saved when passing between pages so that's another thing.
That's about it, any helpful and nonhelpful comments are appreciated.