home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 December / CMCD1203.ISO / Software / Shareware / Programare / toolkit / toolkitsetup.msi / Instal01.cab / _2C06F501A8A54008AAC42DA83282D2BB < prev    next >
Text File  |  2003-11-06  |  2KB  |  30 lines

  1. var modTitle = "Survey Title";
  2. var copyright = "⌐ 2003 My Organization Name";
  3. var useSCORM = true;
  4.  
  5. EvalID = arrQuestions.length;
  6. thisID = EvalID + 1;
  7. arrQuestions[EvalID] = new objEvalQuestion(thisID, "radio");
  8. arrQuestions[EvalID].evalQuestion = "Rate how well you met the objective: <i>Enter Course Objective Here</i>.";
  9. thisOpt = arrQuestions[EvalID].evalDistractors.length;
  10. arrQuestions[EvalID].addDistractor(true);
  11. arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "1";
  12. arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Excellent";
  13. thisOpt = arrQuestions[EvalID].evalDistractors.length;
  14. arrQuestions[EvalID].addDistractor(true);
  15. arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "2";
  16. arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Good";
  17. thisOpt = arrQuestions[EvalID].evalDistractors.length;
  18. arrQuestions[EvalID].addDistractor(true);
  19. arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "3";
  20. arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Average";
  21. thisOpt = arrQuestions[EvalID].evalDistractors.length;
  22. arrQuestions[EvalID].addDistractor(true);
  23. arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "4";
  24. arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Below Average";
  25. thisOpt = arrQuestions[EvalID].evalDistractors.length;
  26. arrQuestions[EvalID].addDistractor(true);
  27. arrQuestions[EvalID].evalDistractors[thisOpt].txtValue = "5";
  28. arrQuestions[EvalID].evalDistractors[thisOpt].txtDisplay = "Poor";
  29.  
  30. intNumQuestions = arrQuestions.length;