home *** CD-ROM | disk | FTP | other *** search
/ Oz - The Magical Adventure / Adventure.iso / pc / dkdata / splash.dxr / 00043.ls < prev    next >
Encoding:
Text File  |  2000-06-01  |  167 b   |  14 lines

  1. property myDelay
  2.  
  3. on beginSprite me
  4.   myDelay = ticks() + 60
  5. end
  6.  
  7. on exitFrame
  8.   if ticks() < myDelay then
  9.     go(the frame)
  10.   else
  11.     go(1, "register")
  12.   end if
  13. end
  14.