home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Animal World / Multimedia Animal World.iso / mac / DATA / CHAPTERS / SHARED.DIR / 00457.ls < prev    next >
Encoding:
Text File  |  1994-12-09  |  979 b   |  51 lines

  1. on mouseUp
  2.   if the mouseH > 540 then
  3.     if the movie = "MAIN.DIR" then
  4.       go(2)
  5.       exit
  6.     end if
  7.     if the frame > 15 then
  8.       go(1)
  9.       exit
  10.     end if
  11.     if the movie <> "MAIN.DIR" then
  12.       if the movie <> "DATABASE.DIR" then
  13.         go(5, "MAIN.DIR")
  14.         exit
  15.       else
  16.         if the frame = 2 then
  17.           go(1, "MAIN.DIR")
  18.         else
  19.           go(2)
  20.         end if
  21.         exit
  22.       end if
  23.     else
  24.       go(2)
  25.       exit
  26.     end if
  27.   end if
  28.   if the mouseH < 50 then
  29.     if the movie = "DATABASE.DIR" then
  30.       if the frame < 5 then
  31.         puppetSprite(48, 1)
  32.         set the castNum of sprite 48 to 201
  33.         updateStage()
  34.         exit
  35.       else
  36.         puppetSprite(48, 1)
  37.         set the castNum of sprite 48 to 202
  38.         updateStage()
  39.         exit
  40.       end if
  41.     end if
  42.     if the movie <> "MAIN.DIR" then
  43.       go(1)
  44.     end if
  45.     puppetSprite(20, 1)
  46.     set the castNum of sprite 20 to 3
  47.     updateStage()
  48.     exit
  49.   end if
  50. end
  51.