multiple true/false options in question
July 24, 2006 12:00 AM
Easy? No. But it can be done quite simply.1. Create your 5 questions. I recommend that as the questions are created, you copy the name of the question variable and paste it into the question name. This will make step 2 easier.Do not code any feedback within the questions unless you want to give feedback for just that question.2. Now, instead of the question automatically giving feedback, you have to do it. So, replace the actions on the Next button with:2.a. Action: Run Correct Action Group; Conditions: List all 5 variables are correct.In the Correct Action Group put displays, and any other feedback you want such as highlighting parts of the screen. You can add a go to next page which will run after they click the OK on a standard display.2.b. Action: Run Incorrect Action Group; Conditions: list all 5 variables if any are not correct.The incorrect action group has all the actions you want done.If you have lots of these to do, there is a better way. Above you have to have all the variables listed twice. Believe me, it is very easy to make a mistake. I use the below on the Next button.Action 1: temp_ans = "right"Action 2: temp_ans = "wrong" if any of the questions are not correctAction 3: Run Action Group; Ans_Correct_Group if temp_ans = "right"Action 4: Run Action Group; Ans_Not_correct_Group if temp_ans = "wrong"I use this over and over again and I have only Action #2 to change the variable names in.
Discussions have been disabled for this post