Forum Discussion
BastiaanTimmer
11 years agoPartner
Articulate Storyline: Export to Google Drive
PREVIEW | SOURCE
On the Articulate user days in Utrecht (2015), we held a session about exporting Articulate Storyline variables to Google Drive (Spreadsheet). This export is achieved via...
doanken
2 years agoCommunity Member
Hello Math Notermans, if we use the score variable, there are many different players, how can we compare their scores and rank them based on the scores they achieved? Thank you Math Notermans!
MathNotermans-9
2 years agoCommunity Member
Reading data back in you do using $get or $getJSON. The problem with these approaches is that you get all data ( as an Object ) and have to parse that.
Examples:
$.get(WEB_APP_URL, function(data, status){ console.log("Data: " + data + "\nStatus: " + status); });
$.getJSON(WEB_APP_URL, function(result){ $.each(result, function(i, field){ console.log(i+" | "+field); }); });
When you succesfully have all the data. You can put it into arrays and sort those. Then you can show the top 3 or whatever.
Related Content
- 10 months ago