home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 October / dotnet_50.iso / pc / media / moteur.dxr / 00025.ls < prev    next >
Encoding:
Text File  |  2000-10-02  |  297 b   |  17 lines

  1. on exitFrame me
  2.   sprite(30).visible = 0
  3.   if rollover(11) then
  4.     sprite(11).blend = 100
  5.   else
  6.     sprite(11).blend = 60
  7.   end if
  8.   repeat with x = 8 to 9
  9.     if rollover(x) then
  10.       sprite(x).blend = 100
  11.       next repeat
  12.     end if
  13.     sprite(x).blend = 60
  14.   end repeat
  15.   go(the frame)
  16. end
  17.