I’ve written an activity that asks the students questions. These then are marked and a “Correct well done” message displayed if correct. I also have a summary table on the first slide that keeps track of total score etc,.
I have used the “correct” command to also show correctness on the dashboard.
However on a question using the multiple choice option this doesn’t work.
It tells the student they are correct and returns the correct value to the summary table to keep track of their marks but doesn’t show a tick on the dashboard.
The slide contains a note item (note12) and a multiple choice item (ans12)
The code on note12 cl is:
content: “{message} {feedback}”
message = "
Which is the best buy?
Pack of 9 pears for £3.90
Pack of 12 apples for £5.00
"
feedback = when ans12.submitted and ans12.script.check12=1 “\n\n\n✅Good work ! !”
when ans12.submitted “\n\n\n❌Wrong answer. Please try again.”
otherwise “”
The code on the multiple choice item(ans12) is:
check12= when ans12.isSelected(2) 1 otherwise 0
correct: check12=1
I can’t see why this isn’t working and would appreciate any help.