home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 October / dotnet_50.iso / pc / media / check.dxr / 00009_filtre.ls < prev    next >
Encoding:
Text File  |  2001-01-30  |  286 b   |  18 lines

  1. on mouseUp
  2.   repeat with i = 1 to 5
  3.     sprite(20).blend = i * 20
  4.     updateStage()
  5.   end repeat
  6.   if the machineType = 256 then
  7.     go("pc")
  8.   else
  9.     go("mac")
  10.   end if
  11.   cc = 5
  12.   repeat while cc > -1
  13.     sprite(20).blend = cc * 20
  14.     cc = cc - 1
  15.     updateStage()
  16.   end repeat
  17. end
  18.