I’m want two things:
- Mark the teacher screen with a check.
- Feedback in note to student.
I figured out the table interaction check, but I need help with checking to see if students interacted with the graphs. They just need to move the point (correctness not necessary).
Here’s what I have so far:
Here’s the cl I have so far in the NOTE
table=table4
graph1=graphA4
graph2=graphB4
row1a=table.cellContent(1,1)
row1b=table.cellContent(1,2)
row2a=table.cellContent(2,1)
row2b=table.cellContent(2,2)
directions= "
- Move the green point to make rectangles for the area.
- Complete the table for your rectangles."
success= "
Yay! Next slide."
content:
when table.submitted and
(isDefined(row1a) and isDefined(row1b) and isDefined(row2a) and isDefined(row2b)) “${success}”
otherwise “${directions}”