set the loc of sprite (Xart + 5) to point(spriteLeft, spriteTop + 81)
setAt(gFormClicks, vListPos, #f)
end case
updateStage()
end
on getTextAnswers
set vTempText to EMPTY
set the text of member "styleAnswers" to EMPTY
put "These are your answers to the section What's Your Style?" & RETURN & RETURN after vTempText
put "What is the style you use most frequently when dealing with key changes in your life? " after vTempText
put clicksToText(1) & RETURN & RETURN after vTempText
put "Complete the following sentence: I believe that style of dealing with change I most frequently use now is -- " after vTempText
put clicksToText(2) & RETURN & RETURN after vTempText
put "To what extent do you want to modify your most frequently used style of dealing with change?" && the text of member "style field 1" & RETURN & RETURN after vTempText
put "Which personal style would you prefer to use most often in dealing with change? " after vTempText
put clicksToText(3) & RETURN & RETURN after vTempText
put "List three reasons for wanting to improve your style of dealing with change, or practice using your chosen style more effectively." && the text of member "style field 2" & RETURN & RETURN after vTempText
set the text of member "styleAnswers" to vTempText
end
on clicksToText thisUn
case thisUn of
1, 3:
case getAt(gFormClicks, thisUn) of
#empty:
set vAnswer to "No selection made."
#a:
set vAnswer to "Acquiescence"
#b:
set vAnswer to "Partnership"
#c:
set vAnswer to "Passive resistance"
#d:
set vAnswer to "Active resistance"
#e:
set vAnswer to "Full Retreat"
#f:
set vAnswer to "Active acceptance"
end case
return vAnswer
2:
case getAt(gFormClicks, 2) of
#empty:
set vAnswer to "... no selection made"
#a:
set vAnswer to "working against me."
#b:
set vAnswer to "not working for me as well as it could be."
#c:
set vAnswer to "usually working okay for me."
#d:
set vAnswer to "working most of the time."
#e:
set vAnswer to "helping me to excel."
end case
return vAnswer
end case
end
on resetStyleClicks
repeat with X = 10 to 12
set vListPos to X - 9
set vClickArt to X - 5
set spriteTop to the top of sprite vClickArt
set spriteLeft to the left of sprite vClickArt + 6
case getAt(gFormClicks, vListPos) of
#empty:
nothing()
#a:
set the loc of sprite X to point(spriteLeft, spriteTop + 6)
#b:
set the loc of sprite X to point(spriteLeft, spriteTop + 21)
#c:
set the loc of sprite X to point(spriteLeft, spriteTop + 36)
#d:
set the loc of sprite X to point(spriteLeft, spriteTop + 51)
#e:
set the loc of sprite X to point(spriteLeft, spriteTop + 66)
#f:
set the loc of sprite X to point(spriteLeft, spriteTop + 81)