home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 August / netCD48.iso / mac / net / features / 00082_Script_82 < prev    next >
Text File  |  1998-07-02  |  3KB  |  131 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.   
  61.   if rollover (8) then
  62.     puppetsprite 8,true
  63.     set the member of sprite 8 to 26
  64.   end if
  65.   if not rollover (8) then
  66.     puppetsprite 8,false
  67.     updatestage
  68.   end if
  69.   
  70.   if rollover (9) then
  71.     puppetsprite 9,true
  72.     set the member of sprite 9 to 18
  73.   end if
  74.   if not rollover (9) then
  75.     puppetsprite 9,false
  76.     updatestage
  77.   end if
  78.   
  79.   if rollover (10) then
  80.     puppetsprite 10,true
  81.     set the member of sprite 10 to 20
  82.   end if
  83.   if not rollover (10) then
  84.     puppetsprite 10,false
  85.     updatestage
  86.   end if
  87.   
  88.   if rollover (11) then
  89.     puppetsprite 11,true
  90.     set the member of sprite 11 to 22
  91.   end if
  92.   if not rollover (11) then
  93.     puppetsprite 11,false
  94.     updatestage
  95.   end if
  96.   
  97.   set handCursor to [130,131]
  98.   
  99.   set the cursor of sprite 1 to handCursor
  100.   set the cursor of sprite 2 to handCursor
  101.   set the cursor of sprite 3 to handCursor
  102.   set the cursor of sprite 4 to handCursor
  103.   set the cursor of sprite 5 to handCursor
  104.   set the cursor of sprite 6 to handCursor
  105.   set the cursor of sprite 8 to handCursor
  106.   set the cursor of sprite 9 to handCursor
  107.   set the cursor of sprite 10 to handCursor
  108.   set the cursor of sprite 11 to handCursor
  109.   set the cursor of sprite 23 to handCursor
  110.   set the cursor of sprite 27 to handCursor
  111.   set the cursor of sprite 24 to handCursor
  112.   set the cursor of sprite 16 to handCursor
  113.   set the cursor of sprite 25 to handCursor
  114.   set the cursor of sprite 28 to handCursor
  115.   set the cursor of sprite 17 to handCursor
  116.   set the cursor of sprite 20 to handCursor
  117.   set the cursor of sprite 27 to handCursor
  118.   set the cursor of sprite 29 to handCursor
  119.   set the cursor of sprite 30 to handCursor
  120.   
  121.   set the cursor of sprite 32 to handCursor
  122.   set the cursor of sprite 38 to handCursor
  123.   set the cursor of sprite 33 to handCursor
  124.   set the cursor of sprite 34 to handCursor
  125.   set the cursor of sprite 35 to handCursor
  126.   set the cursor of sprite 36 to handCursor
  127.   set the cursor of sprite 37 to handCursor
  128. on exitframe
  129.   
  130.   go to the frame  
  131. end