home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Tools.Dxr / Internal_121_RACE section code.ls < prev    next >
Encoding:
Text File  |  1998-05-04  |  519 b   |  35 lines

  1. global gMasterData
  2.  
  3. on goRace
  4.   go(label("race"))
  5.   startTimer()
  6.   goNarrator(gMasterData, "23")
  7.   setUserArea(gMasterData, #race)
  8. end
  9.  
  10. on goRaceNoTina
  11.   go(label("race"))
  12.   startTimer()
  13.   setUserArea(gMasterData, #race)
  14. end
  15.  
  16. on nextRace
  17.   stopSounds()
  18.   go(the frame + 1)
  19.   startTimer()
  20. end
  21.  
  22. on prevRace
  23.   stopSounds()
  24.   go(marker(-1))
  25.   startTimer()
  26. end
  27.  
  28. on goRaceEnd
  29.   go(the frame + 1)
  30.   setUserArea(gMasterData, #raceEnd)
  31.   if getaProp(checkMarks2, #race) = 0 then
  32.     setaProp(checkMarks2, #race, 1)
  33.   end if
  34. end
  35.