home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 November / SHOWCASE.ISO / files / shared.dir / 05290_Script_5290 < prev    next >
Text File  |  1995-06-14  |  559b  |  25 lines

  1. on exitFrame
  2.   global gpressed
  3.   repeat with n = 2 to 3
  4.     if rollover (n) then 
  5.       if n <> gpressed then
  6.         
  7.         
  8.         set caster = the name of cast(the castnum of sprite (n))
  9.         put "lite" into word 3 of caster
  10.         set the puppet of sprite n to true
  11.         set the castnum of sprite (n) = the number of cast caster
  12.         updatestage
  13.       
  14.       end if
  15.       
  16.     else
  17.       if n <> gpressed then
  18.        set the puppet of sprite n = false
  19.       end if
  20.       
  21.     end if
  22.   end repeat
  23.   go to the frame
  24. end
  25.