home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Japan / CSK / images / guide.dcr / 00070.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  982 b   |  48 lines

  1. on exitFrame
  2.   if rollOver(8) or rollOver(9) or rollOver(10) or rollOver(11) or rollOver(12) or rollOver(13) then
  3.     cursor(3)
  4.   else
  5.     cursor(-1)
  6.   end if
  7. end
  8.  
  9. on enterFrame
  10.   if the clickOn = 8 then
  11.     cursor(-1)
  12.     puppetSound("beep")
  13.     go("chapt.,9")
  14.   else
  15.     if the clickOn = 9 then
  16.       cursor(-1)
  17.       puppetSound("beep")
  18.       go("jupiter")
  19.     else
  20.       if the clickOn = 10 then
  21.         cursor(-1)
  22.         puppetSound("beep")
  23.         go("saturn")
  24.       else
  25.         if the clickOn = 11 then
  26.           cursor(-1)
  27.           puppetSound("beep")
  28.           go("uranus")
  29.         else
  30.           if the clickOn = 12 then
  31.             cursor(-1)
  32.             puppetSound("beep")
  33.             go("neputune")
  34.           else
  35.             if the clickOn = 13 then
  36.               cursor(-1)
  37.               puppetSound("beep")
  38.               go("pluto")
  39.             else
  40.               nothing()
  41.             end if
  42.           end if
  43.         end if
  44.       end if
  45.     end if
  46.   end if
  47. end
  48.