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 / 00031.ls < prev    next >
Encoding:
Text File  |  2017-09-21  |  999 b   |  49 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.   go("chapt.,8")
  8. end
  9.  
  10. on enterFrame
  11.   if the clickOn = 8 then
  12.     cursor(-1)
  13.     puppetSound("beep")
  14.     go("chapt.,9")
  15.   else
  16.     if the clickOn = 9 then
  17.       cursor(-1)
  18.       puppetSound("beep")
  19.       go("jupiter")
  20.     else
  21.       if the clickOn = 10 then
  22.         cursor(-1)
  23.         puppetSound("beep")
  24.         go("saturn")
  25.       else
  26.         if the clickOn = 11 then
  27.           cursor(-1)
  28.           puppetSound("beep")
  29.           go("uranus")
  30.         else
  31.           if the clickOn = 12 then
  32.             cursor(-1)
  33.             puppetSound("beep")
  34.             go("neputune")
  35.           else
  36.             if the clickOn = 13 then
  37.               cursor(-1)
  38.               puppetSound("beep")
  39.               go("pluto")
  40.             else
  41.               nothing()
  42.             end if
  43.           end if
  44.         end if
  45.       end if
  46.     end if
  47.   end if
  48. end
  49.