
I'm creating an activity on some eLearning where an individual is attempting to select the correct answers. I have a next button set up with the variable visibleNext. I am trying to only have the Next button appear when all of the green buttons have been selected (these buttons begin white but have a display mode variable). I tried adding to the green buttons with all of the green variables included like below:
If(UpdateContext({display132btn:DisplayMode.Disabled, display464btn:DisplayMode.Disabled, display011btn:DisplayMode.Disabled}), UpdateContext({visibleNext:true}))
But no luck there. I also tried just adding an If formula to the visible function on the next button:
If(btn132.Pressed = true & btn464.Pressed = true & btn011.Pressed = true), UpdateContext({visibleNext:true})
etc. But still no luck.
Any assistance on this would be greatly appreciated. Lots of content online but nothing specific to my problem.