First I should preface this by saying that I'm quite new to Flash/AS!
Long story short, I'm working on a very basic quiz game in Flash. The user will be presented with questions and must choose an answer to proceed (whether they choose the right or wrong answer).
This will be used as a training tool at my work, and we need to be able to track users' answers to determine what people got right/wrong, who needs additional training, etc.
My initial thought is to utilize SharedObjects to gather their answers (since SO are user-specific, this seemed to make sense). My question though, is there a way to access the SO data and send an email, export a text file (or something) to the managers? Possibly store the clicks in an array and export that?
The other thing is that we don't want people to be able to retake the quiz (there's an incentive for getting 90%+ questions right). My other thought was that I could write some data to the SO once the user reaches the end-screen and can be checked against at login (to see if they've already finished the game).
Anyways, that's the problem I'm running into. If emailing/exporting SO data isn't an option, what other options are there?