home *** CD-ROM | disk | FTP | other *** search
/ PC Action 1997 January / PCA0197.ISO / demos / ambe / roxy / roxy.dxr / 00494.ls < prev    next >
Encoding:
Text File  |  1996-10-28  |  333 b   |  20 lines

  1. on startMovie
  2.   global colorcrsr
  3.   cursor([2497, 2498])
  4.   checkForPatches()
  5. end
  6.  
  7. on checkForPatches
  8.   global oPatchManager
  9.   if objectp(oPatchManager) then
  10.     patchMe(oPatchManager, the movieName)
  11.   end if
  12. end
  13.  
  14. on closePatchFile
  15.   global oPatchManager
  16.   if objectp(oPatchManager) then
  17.     closePatchFile(oPatchManager)
  18.   end if
  19. end
  20.