home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_61_PRINT Scripts.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  4.7 KB  |  136 lines

  1. on initFields
  2.   global gCorner1, gCorner2, gCorner3, gCorner4
  3.   set gCorner1 to "No answer given."
  4.   set gCorner2 to "No answer given."
  5.   set gCorner3 to "No answer given."
  6.   set gCorner4 to "No answer given."
  7.   set vFieldList to ["style field 1", "style field 2", "corner 1", "corner 2", "corner 3", "corner 4", "historyAnswers", "styleAnswers", "ReactionAnswers", "PRAnswers", "4CornersAnswers", "PrintAllPart1"]
  8.   repeat with xField in vFieldList
  9.     set the text of member xField to EMPTY
  10.   end repeat
  11.   setCHfield()
  12. end
  13.  
  14. on setCHfield
  15.   set the textStyle of member "CH field" to "plain"
  16.   set the text of member "CH field" to the text of member "CH field source"
  17.   set theseLines to [1, 4, 7, 10, 13, 16]
  18.   repeat with X in theseLines
  19.     set vCharCount to the number of chars in line X of field "CH field"
  20.     set the textStyle of char 1 to vCharCount - 1 of line X of field "CH field" to "bold"
  21.   end repeat
  22.   set vChar to the number of chars in line 1 of field "CH field"
  23.   set the selStart to vChar
  24.   set the selEnd to vChar
  25. end
  26.  
  27. on assemblePRFields textf1, textf2
  28.   global gPRHolder
  29.   set lineCount to the number of lines in field textf1
  30.   repeat with i = 1 to lineCount
  31.     set tmp1 to line i of field textf1
  32.     set tmp2 to line i of field textf2
  33.     put tmp1 && tmp2 into line i of gPRHolder
  34.   end repeat
  35. end
  36.  
  37. on setPRField
  38.   global gPRHolder
  39.   set the text of field "PRAnswers" to EMPTY
  40.   put "These are your Personal Resources in the order you ranked them:" & RETURN & RETURN & gPRHolder into field "PRAnswers"
  41. end
  42.  
  43. on listReactions
  44.   global gCardsMoved, gCorner3
  45.   set vTempText to EMPTY
  46.   set the text of member "ReactionAnswers" to EMPTY
  47.   put "Your Reactions to Change" & RETURN & RETURN after vTempText
  48.   put "The reactions to change that you selected are:" & RETURN after vTempText
  49.   repeat with vArt in gCardsMoved
  50.     put line vArt - 6 of field "reactions list" & RETURN after vTempText
  51.   end repeat
  52.   put RETURN & "Your score on the Reaction to Change meter was:" && gCorner3 & RETURN after vTempText
  53.   set the text of member "ReactionAnswers" to vTempText
  54. end
  55.  
  56. on getCorner1
  57.   global gCorner1
  58.   set gCorner1 to clicksToText(1)
  59. end
  60.  
  61. on getCorner2 answerfield, startword, endword
  62.   global gCorner2
  63.   set tmpStart to 0
  64.   set tmpEnd to 0
  65.   set vTempText to EMPTY
  66.   set wCount to the number of words in field answerfield
  67.   repeat with i = 1 to wCount
  68.     if word i of field answerfield = startword then
  69.       set tmpStart to i + 1
  70.       exit repeat
  71.     end if
  72.   end repeat
  73.   repeat with i = 1 to wCount
  74.     if word i of field answerfield = endword then
  75.       set tmpEnd to i - 1
  76.       exit repeat
  77.     end if
  78.   end repeat
  79.   if (tmpStart = 0) or (tmpEnd = 0) then
  80.     set vTempText to "The following are your answers to the Change History reflection questions:" & RETURN & RETURN & "Change History field error" & RETURN
  81.   else
  82.     if (tmpEnd - tmpStart) = -1 then
  83.       set gCorner2 to "No answer given."
  84.       set vTempText to "The following are your answers to the Change History reflection questions:" & RETURN & RETURN & "NO answer in this session." & RETURN
  85.     else
  86.       set gCorner2 to word tmpStart to tmpEnd of field answerfield
  87.       set vTempText to "The following are your answers to the Change History reflection questions:" & RETURN & RETURN & the text of member "CH field" & RETURN
  88.     end if
  89.   end if
  90.   set the text of member "HistoryAnswers" to vTempText
  91. end
  92.  
  93. on getCorner3
  94.   global gBoardScore, gCorner3
  95.   case 1 of
  96.     (gBoardScore >= 25):
  97.       set gCorner3 to "Strong Acceptance"
  98.     ((gBoardScore >= 8) and (gBoardScore <= 24)):
  99.       set gCorner3 to "Moderate Acceptance"
  100.     ((gBoardScore >= -8) and (gBoardScore <= 7)):
  101.       set gCorner3 to "Willing to Comply"
  102.     ((gBoardScore >= -24) and (gBoardScore <= -9)):
  103.       set gCorner3 to "Moderate Resistance"
  104.     (gBoardScore <= -26):
  105.       set gCorner3 to "Strong Resistance"
  106.   end case
  107. end
  108.  
  109. on getCorner4
  110.   global gCorner4, gPRHolder
  111.   repeat with i = 1 to 3
  112.     put line i of gPRHolder into line i of gCorner4
  113.   end repeat
  114. end
  115.  
  116. on getAllPart1
  117.   global gAllPart_1
  118.   set partA to the text of member "styleAnswers"
  119.   set partB to the text of member "historyAnswers"
  120.   set partC to the text of member "ReactionAnswers"
  121.   set partD to the text of member "PRAnswers"
  122.   set partE to the text of member "4CornersAnswers"
  123.   set gAllPart_1 to "Answers from Part 1, Self-Assessment:" & RETURN & "--------------------------------------------------" & RETURN & RETURN & partA & RETURN & partB & RETURN & partC & RETURN & partD & RETURN & partE
  124. end
  125.  
  126. on menuPrint
  127.   global gMasterData, gAllPart_1
  128.   if iAmActivated(gMasterData) then
  129.     getAllPart1()
  130.     set the text of member "PrintAllPart1" to gAllPart_1
  131.     print(the text of member "PrintAllPart1")
  132.   else
  133.     alert("Printing is unavailable until an activity is completed.")
  134.   end if
  135. end
  136.