|
Hi,
I am using a text input field so that if the user enters a certain value then a green popup box should appear. Otherwise, a red popup box should appear.
However, CourseLab considers blank/null entries, i.e. only cliking inside the text input field, as a trigger for the red popup box.
I don't want this to happen, actually.
For your convenience, here's my script:
On Leave Field IF(Condition='$OBJ_23.value=="you"') DISPLAY(Object='correct',Display='Show',Effect='Object',Duration='0') IF(Condition='$OBJ_23.value!="you"') DISPLAY(Object='incorrect',Display='Show',Effect='Object',Duration='0')
Note: OBJ_23 is the text input field "correct" is the green popup box "incorrect" is the red popup box
Thank you.
|