home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 September / net49.iso / pc / net / started / 00073.ls < prev    next >
Encoding:
Text File  |  1998-07-01  |  2.5 KB  |  112 lines

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