Exporting a text file in the Web Player

We are doing some play testing soon and we are looking for a way to dump a bunch of stats into a text file for reviewing. Problem is, we are using a web player so we can’t just dump the text file onto the computer we are using. I image the only thing we could do would be to upload the data somewhere else, but I haven’t the foggiest idea of how to go about this. Looked into the WWW class and I just can’t wrap my head around it. Does anyone know if there is a simple solution to this problem, or are we going to have to set up a server just for this test?

Well, you can do a WWWPost and upload data to a server. Or you could write data to PlayerPrefs which on the web player means the registry. Alternatively, maybe build a standalone version for play testing?

Do you mean like copy and paste, so the text goes to the clipboard?

If so .Net has some clipboard functions that might help. Another approach is to place the text in a GUI text field and then allow people to cut and paste from that.