home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 November / SHOWCASE.ISO / files / vision.dir / 00406_Script_406 < prev    next >
Text File  |  1995-06-14  |  583b  |  26 lines

  1. global gLastSprite
  2. on exitFrame
  3.   go to the frame
  4. end
  5.  
  6. on idle
  7.     repeat with n = 17 to 26
  8.       if rollover(n) then
  9.         if n <> gLastSprite AND the mouseCast = the castNum of sprite n then 
  10.           put n into lastSprite
  11.           puppetSprite n, TRUE
  12.           set the castnum of sprite n = the number of cast ("FinCon"& string(n-16) && "lit")
  13.         end if
  14.         exit repeat
  15.       end if
  16.     end repeat
  17.  
  18.     
  19.     repeat with n = 17 to 26
  20.       if n <> lastSprite then
  21.         puppetSprite n, FALSE
  22.       end if
  23.     end repeat
  24.     updatestage
  25. end
  26.