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

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