|
Hi, JJ! On the slide with Current Results (CurRes) object: 1. Create 3 (or more) text object with corresponding feedback texts (lets call it TXT_1, TXT_2, TXT_3). Make them invisible by default (Display = none). 2. Attach to Current Results object "afterdisplay" event sequence of actions:
VARIABLE (varname, $CurRes_ID.rawScore) IF(#varname<40) _ DISPLAY(TXT_1) _ ELSE _ _ IF(#varname<80) _ _ _ DISPLAY(TXT_2) _ _ _ ELSE _ _ _ _ DISPLAY(TXT_3)
That's all. CurRes_ID is id of the Current Results object. $ is special label for object ids.
|