I am sorry for all the questions. You all have been SO helpful this year!
I found this slide
but wanted to allow my students to try again if they were not correct. I can only seem to get it to try the first time and won’t let them retry. Any ideas of what I should change?
Again, you all really have made teaching this year so much easier
This will give them ‘n’ attempts and I said n=8
code in act9:
disabled:act9.pressCount>n```
code in graph
```xmin:-1
xmax:4
ymin:-1
ymax:4
number("a_1"):act9.lastValue("a_1")
##
# my change: from when act9.pressCount>0
# to: when act9.pressCount>act9.script.n
# n is defined in act9 as number of possible guesses
##
number("I"):when act9.pressCount>act9.script.n 1
otherwise 0```