home *** CD-ROM | disk | FTP | other *** search
/ The VPRO Digital Guide 1994 / vpro.iso / vpro1 / kl.dir / 00106.ls < prev    next >
Encoding:
Text File  |  1994-08-28  |  610 b   |  30 lines

  1. on enterFrame
  2.   global nowPlaying, gMediaType
  3.   ToggleControls()
  4.   if nowPlaying = 1 then
  5.     if gMediaType = "moov" then
  6.       DispQTControls()
  7.       QTEnterFrameScript()
  8.     end if
  9.     if gMediaType = "aiff" then
  10.       DispAudioControls()
  11.       SoundEnterFrameScript()
  12.     end if
  13.   else
  14.     HideAudioControls()
  15.   end if
  16. end
  17.  
  18. on exitFrame
  19.   global nowPlaying, gMediaType
  20.   ShowSprite("3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18")
  21.   if nowPlaying = 0 then
  22.     NavHelper("42,43")
  23.     go(the frame - 2)
  24.     Helper("3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18")
  25.   else
  26.     go(the frame)
  27.     updateStage()
  28.   end if
  29. end
  30.