test questions

If I were to tackle this task, I would consider a toggle variable. I'd define the following variables:varScore (initial value: 0)varFirstTry (initial value: "Not attempted")For each test page, assign an Action that does the following:On Show, Modify Variable, Target: varFirstTry, Value: "Not attempted", Modification Type: Set Variable ContentsWhen the learner clicks on a wrong answer, assign an Action that does the following:On Click, Modify Variable, Target: varFirstTry, Value: "Incorrect", Modification Type: Set Variable ContentsWhen the learner clicks on the correct answer, assign these actions:On Click, Modify Variable, Target: varFirstTry, Value: "Correct", Modification Type: Set Variable Contents, Perform only if: varFirstTry Not Equal To "Incorrect"On Click, Modify Variable, Target: varScore, Value: 1, Modification Type: Add to Variable Contents, Perform only if: varFirstTry Equal To "Correct"That way, the test assigns a value that disallows the score from being modified if a wrong answer is chosen. Now, I don't know if this works with the traditional Question page. I don't work much with the built-in Questions. But, if you are manually doing your own questions, this should work out (assuming I didn't make a typo).Kevin

Discussions have been disabled for this post