home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Image.iso / aolshow.dir / 00092.ls < prev    next >
Encoding:
Text File  |  1996-10-20  |  365 b   |  19 lines

  1. on exitFrame
  2.   if rollOver(30) then
  3.     set the visible of sprite 30 to 1
  4.   else
  5.     set the visible of sprite 30 to 0
  6.   end if
  7.   if the duration of member the member of sprite 4 > the movieTime of sprite 4 then
  8.     go(the frame)
  9.   else
  10.     set the visible of sprite 4 to 0
  11.     updateStage()
  12.     go(the frame + 1)
  13.   end if
  14. end
  15.  
  16. on mouseDown
  17.   go(the frame + 1)
  18. end
  19.