home *** CD-ROM | disk | FTP | other *** search
/ CD Actual: Windows XP / CDWindowsXP.iso / Multimedia.dxr / 00181.ls < prev    next >
Encoding:
Text File  |  2001-10-02  |  2.7 KB  |  117 lines

  1. on exitFrame me
  2.   cursor([24, 25])
  3.   set the cursor of sprite 2 to [22, 23]
  4.   set the cursor of sprite 3 to [22, 23]
  5.   set the cursor of sprite 4 to [22, 23]
  6.   set the cursor of sprite 5 to [22, 23]
  7.   set the cursor of sprite 6 to [22, 23]
  8.   set the cursor of sprite 7 to [22, 23]
  9.   set the cursor of sprite 8 to [22, 23]
  10.   set the cursor of sprite 9 to [22, 23]
  11.   set the cursor of sprite 10 to [22, 23]
  12.   set the cursor of sprite 11 to [22, 23]
  13.   set the cursor of sprite 12 to [22, 23]
  14.   set the cursor of sprite 13 to [22, 23]
  15.   set the cursor of sprite 14 to [22, 23]
  16.   set the cursor of sprite 15 to [22, 23]
  17.   set the cursor of sprite 16 to [22, 23]
  18.   set the cursor of sprite 17 to [22, 23]
  19.   set the cursor of sprite 18 to [22, 23]
  20.   set the cursor of sprite 19 to [22, 23]
  21.   set the cursor of sprite 20 to [22, 23]
  22.   set the cursor of sprite 21 to [22, 23]
  23.   set the cursor of sprite 22 to [22, 23]
  24.   set the cursor of sprite 23 to [22, 23]
  25.   set the cursor of sprite 24 to [22, 23]
  26.   set the cursor of sprite 25 to [22, 23]
  27.   if rollover(2) then
  28.     sprite(30).visible = 1
  29.   else
  30.     sprite(30).visible = 0
  31.   end if
  32.   if rollover(3) then
  33.     sprite(31).visible = 1
  34.     sprite(32).visible = 1
  35.     sprite(33).visible = 1
  36.   else
  37.     sprite(31).visible = 0
  38.     sprite(32).visible = 0
  39.     sprite(33).visible = 0
  40.   end if
  41.   if rollover(4) then
  42.     sprite(34).visible = 1
  43.   else
  44.     sprite(34).visible = 0
  45.   end if
  46.   if rollover(5) then
  47.     sprite(35).visible = 1
  48.   else
  49.     sprite(35).visible = 0
  50.   end if
  51.   if rollover(10) then
  52.     sprite(53).visible = 1
  53.   else
  54.     sprite(53).visible = 0
  55.   end if
  56.   if rollover(15) then
  57.     sprite(47).visible = 1
  58.   else
  59.     sprite(47).visible = 0
  60.   end if
  61.   if rollover(16) then
  62.     sprite(48).visible = 1
  63.   else
  64.     sprite(48).visible = 0
  65.   end if
  66.   if rollover(17) then
  67.     sprite(49).visible = 1
  68.   else
  69.     sprite(49).visible = 0
  70.   end if
  71.   if rollover(18) then
  72.     sprite(51).visible = 1
  73.   else
  74.     sprite(51).visible = 0
  75.   end if
  76.   if rollover(19) then
  77.     sprite(52).visible = 1
  78.   else
  79.     sprite(52).visible = 0
  80.   end if
  81.   if rollover(20) then
  82.     sprite(37).visible = 1
  83.     sprite(38).visible = 1
  84.     updateStage()
  85.   else
  86.     sprite(37).visible = 0
  87.     sprite(38).visible = 0
  88.     updateStage()
  89.   end if
  90.   if rollover(21) then
  91.     sprite(39).visible = 1
  92.     sprite(40).visible = 1
  93.     updateStage()
  94.   else
  95.     sprite(39).visible = 0
  96.     sprite(40).visible = 0
  97.     updateStage()
  98.   end if
  99.   if rollover(24) then
  100.     sprite(45).visible = 1
  101.     sprite(46).visible = 1
  102.     updateStage()
  103.   else
  104.     sprite(45).visible = 0
  105.     sprite(46).visible = 0
  106.     updateStage()
  107.   end if
  108.   if rollover(25) then
  109.     sprite(58).visible = 1
  110.     updateStage()
  111.   else
  112.     sprite(58).visible = 0
  113.     updateStage()
  114.   end if
  115.   go(the frame)
  116. end
  117.