That´s all... I have some buttons that add 1 to local storage and keep count as if it was a record.
How can I export this information to xls or something similar locally?
Thanks in advance :)
Add these counters/variables to a text variable. For example: Set saveString to a & "," & b & "," & c
This will give you the result like "10,20,40"
Then add Browser object and use "Browser - Request download of a string" action.
Develop games in your browser. Powerful, performant & highly capable.
jdejean
dop's suggestion is the easiest... I added it to the sample I made last night for your other question...
now there is an export data button. click that to download a file called SurveyResults.csv which can easily be loaded into excel.
get my file here: https://www.rieperts.com/games/forum/survey_array.capx
other options are: in NW.js you can directly write to a text file
or sometimes, for one off cases I put the data in a textbox which can then be selected and copy and pasted into another program.