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

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSounds()
  5.   case gSection of
  6.     1:
  7.       go2()
  8.     2:
  9.       go3()
  10.     3:
  11.       go4()
  12.     4:
  13.       goToAlladin()
  14.     #alladinintro, #clicks:
  15.       goNextMarker()
  16.   end case
  17. end
  18.  
  19. on goBack
  20.   stopSounds()
  21.   case gSection of
  22.     1, 2:
  23.       goIntro()
  24.     3:
  25.       go2()
  26.     4:
  27.       go3()
  28.     #clicks:
  29.       goPrevMarker()
  30.   end case
  31. end
  32.  
  33. on leaveThisMovie
  34.   if iAmActivated(gMasterData) then
  35.     getPrintData()
  36.   end if
  37.   stopSound2()
  38.   cursor(4)
  39.   go(1, "Menu2")
  40. end
  41.  
  42. on notePadButton
  43.   DoNotepad()
  44. end
  45.  
  46. on continueNext
  47.   stopSound2()
  48.   go(the frame + 1)
  49. end
  50.