home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 September / net49.iso / pc / net / features / 00082.ls < prev    next >
Encoding:
Text File  |  1998-07-30  |  2.9 KB  |  117 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(8) then
  52.     puppetSprite(8, 1)
  53.     set the member of sprite 8 to 26
  54.   end if
  55.   if not rollOver(8) then
  56.     puppetSprite(8, 0)
  57.     updateStage()
  58.   end if
  59.   if rollOver(9) then
  60.     puppetSprite(9, 1)
  61.     set the member of sprite 9 to 18
  62.   end if
  63.   if not rollOver(9) then
  64.     puppetSprite(9, 0)
  65.     updateStage()
  66.   end if
  67.   if rollOver(10) then
  68.     puppetSprite(10, 1)
  69.     set the member of sprite 10 to 20
  70.   end if
  71.   if not rollOver(10) then
  72.     puppetSprite(10, 0)
  73.     updateStage()
  74.   end if
  75.   if rollOver(11) then
  76.     puppetSprite(11, 1)
  77.     set the member of sprite 11 to 22
  78.   end if
  79.   if not rollOver(11) then
  80.     puppetSprite(11, 0)
  81.     updateStage()
  82.   end if
  83.   set handCursor to [130, 131]
  84.   set the cursor of sprite 1 to handCursor
  85.   set the cursor of sprite 2 to handCursor
  86.   set the cursor of sprite 3 to handCursor
  87.   set the cursor of sprite 4 to handCursor
  88.   set the cursor of sprite 5 to handCursor
  89.   set the cursor of sprite 6 to handCursor
  90.   set the cursor of sprite 8 to handCursor
  91.   set the cursor of sprite 9 to handCursor
  92.   set the cursor of sprite 10 to handCursor
  93.   set the cursor of sprite 11 to handCursor
  94.   set the cursor of sprite 23 to handCursor
  95.   set the cursor of sprite 27 to handCursor
  96.   set the cursor of sprite 24 to handCursor
  97.   set the cursor of sprite 16 to handCursor
  98.   set the cursor of sprite 25 to handCursor
  99.   set the cursor of sprite 28 to handCursor
  100.   set the cursor of sprite 17 to handCursor
  101.   set the cursor of sprite 20 to handCursor
  102.   set the cursor of sprite 27 to handCursor
  103.   set the cursor of sprite 29 to handCursor
  104.   set the cursor of sprite 30 to handCursor
  105.   set the cursor of sprite 32 to handCursor
  106.   set the cursor of sprite 38 to handCursor
  107.   set the cursor of sprite 33 to handCursor
  108.   set the cursor of sprite 34 to handCursor
  109.   set the cursor of sprite 35 to handCursor
  110.   set the cursor of sprite 36 to handCursor
  111.   set the cursor of sprite 37 to handCursor
  112. end
  113.  
  114. on exitFrame
  115.   go(the frame)
  116. end
  117.