home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 1997 September / Personal_Computer_World_Sep_97.iso / Democd3 / oasquiz.dxr / 00004.ls < prev    next >
Encoding:
Text File  |  1997-06-04  |  743 b   |  24 lines

  1. on mouseDown
  2.   global helpon
  3.   puppetSound("click")
  4.   set the blend of sprite 45 to 100
  5.   set the locH of sprite 45 to the locH of sprite 45 + 2
  6.   set the locV of sprite 45 to the locV of sprite 45 + 2
  7.   startTimer()
  8.   updateStage()
  9.   repeat while the timer < 12
  10.     nothing()
  11.   end repeat
  12.   set the locH of sprite 45 to the locH of sprite 45 - 2
  13.   set the locV of sprite 45 to the locV of sprite 45 - 2
  14.   updateStage()
  15.   set the blend of sprite 45 to 60
  16.   updateStage()
  17.   set helpon to 1
  18.   set the text of cast "quest" to "Click on the options below for help"
  19.   set the text of cast "answer1" to "Setting the timer"
  20.   set the text of cast "answer2" to "Answering questions"
  21.   set the text of cast "answer3" to "The Rules"
  22.   updateStage()
  23. end
  24.