home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Review 54 / CDREVIEW.iso / kerouac / qscreen.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  1996-02-15  |  4.7 KB  |  138 lines

  1. on exitFrame
  2.   cursor(-1)
  3.   set f to EMPTY
  4.   if rollOver(6) then
  5.     set f to "uk"
  6.   else
  7.     if rollOver(7) then
  8.       set f to "aus"
  9.     else
  10.       if rollOver(8) then
  11.         set f to "turk"
  12.       else
  13.         if rollOver(9) then
  14.           set f to "swit"
  15.         else
  16.           if rollOver(10) then
  17.             set f to "spain"
  18.           else
  19.             if rollOver(11) then
  20.               set f to "sa"
  21.             else
  22.               if rollOver(12) then
  23.                 set f to "port"
  24.               else
  25.                 if rollOver(13) then
  26.                   set f to "nz"
  27.                 else
  28.                   if rollOver(14) then
  29.                     set f to "nl"
  30.                   else
  31.                     if rollOver(15) then
  32.                       set f to "asia"
  33.                     else
  34.                       if rollOver(16) then
  35.                         set f to "japan"
  36.                       else
  37.                         if rollOver(17) then
  38.                           set f to "italy"
  39.                         else
  40.                           if rollOver(18) then
  41.                             set f to "india"
  42.                           else
  43.                             if rollOver(19) then
  44.                               set f to "cyp"
  45.                             else
  46.                               if rollOver(20) then
  47.                                 set f to "germ"
  48.                               else
  49.                                 if rollOver(21) then
  50.                                   set f to "france"
  51.                                 else
  52.                                   if rollOver(22) then
  53.                                     set f to "cent"
  54.                                   else
  55.                                     if rollOver(23) then
  56.                                       set f to "sam"
  57.                                     else
  58.                                       if rollOver(24) then
  59.                                         set f to "can"
  60.                                       else
  61.                                         if rollOver(25) then
  62.                                           set f to "scan"
  63.                                         else
  64.                                           if rollOver(26) then
  65.                                             set f to "usa"
  66.                                           else
  67.                                             if rollOver(27) then
  68.                                               set f to "scan"
  69.                                             else
  70.                                               if rollOver(28) then
  71.                                                 set f to "asia"
  72.                                               else
  73.                                                 if rollOver(29) then
  74.                                                   set f to "cent"
  75.                                                 else
  76.                                                   if rollOver(30) then
  77.                                                     set f to "me"
  78.                                                   else
  79.                                                     if rollOver(31) then
  80.                                                       set f to "africa"
  81.                                                     else
  82.                                                       set f to "distrib"
  83.                                                     end if
  84.                                                   end if
  85.                                                 end if
  86.                                               end if
  87.                                             end if
  88.                                           end if
  89.                                         end if
  90.                                       end if
  91.                                     end if
  92.                                   end if
  93.                                 end if
  94.                               end if
  95.                             end if
  96.                           end if
  97.                         end if
  98.                       end if
  99.                     end if
  100.                   end if
  101.                 end if
  102.               end if
  103.             end if
  104.           end if
  105.         end if
  106.       end if
  107.     end if
  108.   end if
  109.   if rollOver(34) then
  110.     puppetSprite(34, 1)
  111.     set the castNum of sprite 34 to 11
  112.     updateStage()
  113.     navhintInf(1)
  114.   else
  115.     puppetSprite(34, 0)
  116.     updateStage()
  117.     navhintInf(0)
  118.   end if
  119.   if f = EMPTY then
  120.     go(the frame)
  121.   else
  122.     go(f)
  123.   end if
  124. end
  125.  
  126. on navhintInf sw
  127.   if sw = 1 then
  128.     puppetSprite(38, 1)
  129.     set the locV of sprite 38 to the bottom of sprite 34 + 4
  130.     set the locH of sprite 38 to the locH of sprite 34 - 88
  131.     updateStage()
  132.   else
  133.     set the locV of sprite 38 to -1000
  134.     updateStage()
  135.     puppetSprite(38, 0)
  136.   end if
  137. end
  138.