home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1999 January / WPCJAN99.ISO / DXRS / Files / ICVexit.dxr / 00019.ls < prev    next >
Encoding:
Text File  |  1998-11-09  |  275 b   |  18 lines

  1. global gMasterObj, gCount
  2.  
  3. on startMovie
  4.   set the actorList to []
  5.   autoUnloadMovie(gMasterObj)
  6.   set gCount to 0
  7. end
  8.  
  9. on change
  10.   set gCount to gCount + 1
  11.   cursor([gCount + 2, gCount + 6])
  12.   if gCount > 4 then
  13.     set gCount to 0
  14.     cursor(-1)
  15.     go(#next)
  16.   end if
  17. end
  18.