home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Japan / Panasonic- / time_capsule / shockwave / E.dcr / 00284.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  522 b   |  28 lines

  1. on exitFrame
  2.   global startfame, nextframe
  3.   if rollOver(1) then
  4.     cursorchange()
  5.     repeat with n = 2 to 25
  6.       if rollOver(n) then
  7.         set nextframe to n
  8.         if nextframe = startfame then
  9.           exit repeat
  10.         end if
  11.         set goframe to "B" & n
  12.         set startfame to n
  13.         go(goframe)
  14.         exit repeat
  15.       end if
  16.     end repeat
  17.   else
  18.     if rollOver(26) then
  19.       cursorchange2()
  20.       go("B26")
  21.     else
  22.       cursorchange2()
  23.       go("B1")
  24.     end if
  25.   end if
  26.   go(the frame)
  27. end
  28.