home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Japan / Fujitsu- / full / sw3.dcr / 00019_EndWaitRepeat.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  227 b   |  14 lines

  1. on exitFrame
  2.   global f
  3.   if (rollOver(1) = 1) and (f = 0) then
  4.     go("Start")
  5.   else
  6.     if (rollOver(1) = 0) and (f = 1) then
  7.       set f to 0
  8.       go(the frame + 1)
  9.     else
  10.       go(the frame + 1)
  11.     end if
  12.   end if
  13. end
  14.