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

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