content: when q31.matchesKey and q32.matchesKey and button31.pressCount>0 “Good Job!” otherwise " "
I like that without the “Good Job” students know to click the “Try Again”, but students can also just click the options until “Good Job” appears. If I had to guess, the issue is in the pressCount portion of the note, but I am officially out of ideas thank you so much for your help
Okay, I’ve found the problem, but I don’t know how to fix it. It’s when students press the check button. When they do, its allows the note to show whenever it wants. My idea is to do something like:
set state to 1 when the submit button is pressed
set note content to "Good Job" if state is 1 and answers are all correct
set state to 0 after correctness is evaluated
# this allows the note component to only evaluate once
would you like the button to reset once students start to change their answer? if so add this to each MC component: selected = when this.isSelected(1) 1 when this.isSelected(2) 2 when this.isSelected(3) 3 when this.isSelected(4) 4 otherwise 0