I want a simple note page to pop up when a student presses a hint button
Brendan
Create a buttton. Let’s call it it hint
inside of your note type
hidden: when hint.pressCount<0 true otherwise false
1 Like
FYI, it should be =0 (not <), and you can simplify the statement to:
hidden: hint.pressCount=0
e.g., the 2 part when/otherwise statement is not needed, it will read the condition for hidden and make hidden “true” when the condition is true.
2 Likes
must have been late!