Is there a way to hide the math input box until a certain multiple choice is selected. For example, I am making an activity with solving systems and I want the math box to show up if they select “one solution” to allow them to write that solution in the box.
If “one solution” is option 2, in your input CL:
hidden: not(yourMCName.isSelected(2))
Change the component name as needed.
1 Like