I am wondering if there is a way to CL a summary page that shows which slides (maybe as a percent or a list) students have completed / interacted with. I’d like an easy way to give participation credit for completing the Desmos (separate from correctness).
You can create a variable in each slide, say “complete”, and in each slide you can assign a value to that variable depending on interactions of the student with the slide (maybe he wrote something …).
In the last slide you show the table according to the values of the varoius “complete” variables …
sort of what they do here:
cellContent(1,1):
when not(note1.script.complete) ""
when note1.script.incomplete "Incomplete"
when note1.script.type= 3 "Completed*"
when note1.script.type = 2 and note1.script.correct and not(note1.script.error) "Correct*"
when note1.script.type =1 and note1.script.correct and not(note1.script.error) "Correct"
otherwise "Incorrect"