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 / 00329.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  845 b   |  39 lines

  1. on exitFrame
  2.   global startfame, nextframe
  3.   if rollOver(1) then
  4.     cursorchange()
  5.     set the locV of sprite 48 to the mouseV
  6.     set the locH of sprite 48 to the mouseH
  7.     repeat with n = 2 to 21
  8.       if rollOver(n) then
  9.         set nextframe to n
  10.         if nextframe = startfame then
  11.           exit repeat
  12.         end if
  13.         set goframe to "A" & n
  14.         set startfame to n
  15.         go(goframe)
  16.         exit repeat
  17.       end if
  18.     end repeat
  19.   else
  20.     cursorchange2()
  21.     if rollOver(22) then
  22.       cursorchange2()
  23.       set the locH of sprite 48 to 400
  24.       go("A22")
  25.     else
  26.       if rollOver(23) then
  27.         cursorchange2()
  28.         set the locH of sprite 48 to 400
  29.         go("A23")
  30.       else
  31.         cursorchange2()
  32.         set the locH of sprite 48 to 400
  33.         go(2)
  34.       end if
  35.     end if
  36.   end if
  37.   go(the frame)
  38. end
  39.