I dunno why, but I can't seem to successfully load a file from disk with node webkit.
Saving works fine - I can open the file in notepad and see the data there - but loading it in node webkit just results in a blank dictionary object.
Any thoughts?
Develop games in your browser. Powerful, performant & highly capable.
Set filedata to Nodewebkit.ReadFile(NodeWebkit.UserFolder&"debugfile0.debugdata")
You're missing the Nodewebkit.ReadFile() so you're just trying to load the filename into the dictionary.
ARGH, I KNEW it was something stupid
Thanks!