home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 August / netCD48.iso / mac / net / started / 00073_Script_73 < prev    next >
Text File  |  1998-07-01  |  3KB  |  127 lines

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