home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Review.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  520 b   |  42 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #start:
  7.       goIntro()
  8.     #intro:
  9.       goReview()
  10.     #score:
  11.       leaveThisMovie()
  12.   end case
  13. end
  14.  
  15. on goBack
  16.   stopSound2()
  17.   case gSection of
  18.     #review:
  19.       goIntro()
  20.     #score:
  21.       goReview()
  22.   end case
  23. end
  24.  
  25. on leaveThisMovie
  26.   if iAmActivated(gMasterData) then
  27.     getPrintData()
  28.   end if
  29.   stopSound2()
  30.   cursor(4)
  31.   go(1, "Menu4")
  32. end
  33.  
  34. on notePadButton
  35.   DoNotepad()
  36. end
  37.  
  38. on continueNext
  39.   stopSound2()
  40.   go(the frame + 1)
  41. end
  42.