home *** CD-ROM | disk | FTP | other *** search
/ GQ - Louise, World Cup, …remy Clarkson, Armageddon / GQCD.iso / files / exitmain.dxr / 00014.ls < prev    next >
Encoding:
Text File  |  1998-05-21  |  271 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, gCount + 4])
  12.   if gCount > 4 then
  13.     set gCount to 0
  14.     cursor(-1)
  15.     go(#next)
  16.   end if
  17. end
  18.