home *** CD-ROM | disk | FTP | other *** search
/ PC Home 49 / PC_Home_Issue_49.iso / musicbox / rehoboe.dxr / 00060.ls < prev    next >
Encoding:
Text File  |  1996-06-28  |  602 b   |  29 lines

  1. on startMovie
  2.   global fixpal
  3.   startQTVR()
  4.   if the machineType <> 256 then
  5.     openXLib("FixPaletteXObj")
  6.     set fixpal to FixPalette(mnew, the stageLeft, the stageTop, the stageRight, the stageTop)
  7.   end if
  8.   set the visible of sprite 20 to 0
  9.   set the visible of sprite 21 to 0
  10.   set the visible of sprite 22 to 0
  11.   set the visible of sprite 23 to 0
  12. end
  13.  
  14. on stopMovie
  15.   global fixpal
  16.   closeObjMovie()
  17.   if the machineType <> 256 then
  18.     fixpal(mdispose)
  19.     closeXLib("FixPaletteXObj")
  20.   end if
  21. end
  22.  
  23. on patchpal
  24.   global fixpal
  25.   if the machineType <> 256 then
  26.     fixpal(mPatchIt)
  27.   end if
  28. end
  29.