I have been working on a project that works similar to a forum, except that there is no "Context." In that, I mean you can only see what the last post was, and respond to it. Once you reply, your text replaces that of your predecessor.
Anyway, that's not the problem.
I have gotten it working by importing from a .txt file via "loadStrings" from the sketch's data folder, and once the user types their response, using "saveStrings" to replace the text in that .txt file. It works well.
The only problem arises once I "export to Applet" to put it onto my website, because the applet itself bundles the "data" folder and breaks the link between itself and the "saveStrings."
Does anyone have a solution for this? I just need to know how to get the applet to reference an exterior .txt file.
Also, here's the code I've been using (Context), as well as the library (controlIP5):