home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 August / netCD48.iso / mac / net / quit.dir / 00065_Script_65 < prev    next >
Text File  |  1998-07-02  |  434b  |  24 lines

  1. on enterFrame
  2.   updatestage
  3.   
  4.   if rollover (2) then
  5.     puppetsprite 2,true
  6.     set the member of sprite 2 to 14
  7.   end if
  8.   if not rollover (2) then
  9.     puppetsprite 2,false
  10.     updatestage
  11.   end if
  12.   
  13.   if rollover (3) then
  14.     puppetsprite 3,true
  15.     set the member of sprite 3 to 20
  16.   end if
  17.   if not rollover (3) then
  18.     puppetsprite 3,false
  19.     updatestage
  20.   end if
  21.   
  22. on exitFrame
  23.   go to the frame
  24. end