I'm looking for a way to let players of my game move their save files from one computer to another.
I've set up a pretty simple system using the JSON and textboxes similar to an example I made here: http://faedine.sytes.net/ExportSave/ExportSave.capx
The problem with this system is that my save files get up to a few 6-7MB, and the length of a textbox caps out at about 1MB. I'm not sure how to change the length of the textbox in construct, but with saves that size it seems like another system might be easier.
I'd like to be able to write it all to a text file that can just be downloaded. Writing straight to a text file is something I've only seen via Node-Webkit though, and not as a browser game solution.
I've thought about creating something with AJAX that exports the JSON save to my webserver and creates a file there based on their game ID, but that seems a bit risky and excessive.
Anyone else know how to go about doing this? The goal is just to move save files from one computer to another, I'm just stumped on an "easy" way as to how to do it.