Hi again,
So I was able to implement the process of displaying the user's quiz answers as you described in your blog. However, I realized what I actually need to keep track of is the points that were scored on each question. For example, if my quiz contains 4 questions, and the questions are 1 point each, and the user gets the first two questions right, and the last two questions wrong, I want to keep track of that and display the following information at the end of the quiz:
Q1: 1
Q2: 1
Q3: 0
Q4: 0
I want the user to know which questions they answered wrong; however, without revealing the correct answer. Is this possible? I tried using the variable "cpQuizInfoPointsscored" However, the variable keeps track of the total points scored in the quiz rather than the points scored per question.
Can you help?
You'll just need another system variable: cpQuizInfoLastSlidePointScored and like cpQuizInfoAnswerChoice, this is a variable that changes its value after each question slide, so you'll need again user variables to store and identify the score for each slide.