home *** CD-ROM | disk | FTP | other *** search
/ The VPRO Digital Guide 1994 / vpro.iso / vpro1 / kl.dir / 00114.ls < prev    next >
Encoding:
Text File  |  1994-08-28  |  489 b   |  26 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
  20.   ShowSprite("3,4,5,6,7,8,9,10,11")
  21.   if nowPlaying = 0 then
  22.     Helper("3,4,5,6,7,8,9,10,11")
  23.   end if
  24.   NavHelper("42,43")
  25. end
  26.