I'm relatively new to Construct, but have decent javascript knowledge.
I need to send some save data OUT of construct runtime so i can store it on a server. I'd rather do this by sending variables out from a Construct function and in as parameters to a regular javascript function of my own (that sits outside of Construct).
I can access global variables ok i.e runtime.globalVars.myglobalvar
however i can't do the same for an array.
What is the best way to send the contents of an array out to my own script?
Or is there a better way than accessing runtime.x.x.x? Surely there is a way to use the direct variable names inside a construct function, or sending them out via some pre-packaged action. I'd have thought this is a pretty common request.