home *** CD-ROM | disk | FTP | other *** search
/ Windows News 1999 Special / WNEWSSPECIALETE.bin / MEDIA / CHECK.DXR / 00063.ls < prev    next >
Encoding:
Text File  |  1997-12-23  |  338 b   |  18 lines

  1. on exitFrame
  2.   repeat with a = 3 to 5
  3.     if rollOver(a) then
  4.       puppetSprite(a, 1)
  5.       set the castNum of sprite a to a + 50
  6.       next repeat
  7.     end if
  8.     puppetSprite(a, 0)
  9.   end repeat
  10.   if rollOver(2) then
  11.     puppetSprite(2, 1)
  12.     set the castNum of sprite 2 to 32
  13.   else
  14.     puppetSprite(2, 0)
  15.   end if
  16.   go(the frame)
  17. end
  18.