home *** CD-ROM | disk | FTP | other *** search
/ The Dynamic Human Version 2.0 / DH2_CD2.ISO / pc / files / intro.dxr / 00002.ls next >
Encoding:
Text File  |  1997-11-12  |  394 b   |  22 lines

  1. on exitFrame
  2.   global introTime
  3.   if voidp(introTime) then
  4.     set introTime to the ticks
  5.   end if
  6.   if the movieTime of sprite 1 < the duration of sprite(1) then
  7.     go(the frame)
  8.   else
  9.     gomovie("main")
  10.   end if
  11. end
  12.  
  13. on mouseDown
  14.   global introTime
  15.   if voidp(introTime) then
  16.     set introTime to the ticks
  17.   end if
  18.   if (the ticks - introTime) >= 60 then
  19.     gomovie("main")
  20.   end if
  21. end
  22.