home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1995 June / PC_PLUS.BIN / crt / futnav.dir / 00015.ls < prev    next >
Encoding:
Text File  |  1995-03-23  |  850 b   |  34 lines

  1. on startMovie
  2.   set the puppet of sprite 10 to 1
  3.   set the puppet of sprite 11 to 1
  4.   set the puppet of sprite 12 to 1
  5.   set the puppet of sprite 13 to 1
  6.   set the puppet of sprite 14 to 1
  7. end
  8.  
  9. on hilight
  10.   if the text of cast "lit" = 10 then
  11.     set the foreColor of sprite 10 to 6
  12.   end if
  13.   if the text of cast "lit" = 11 then
  14.     set the foreColor of sprite 11 to 6
  15.   end if
  16.   if the text of cast "lit" = 12 then
  17.     set the foreColor of sprite 12 to 6
  18.   end if
  19.   if the text of cast "lit" = 13 then
  20.     set the foreColor of sprite 13 to 6
  21.   end if
  22.   if the text of cast "lit" = 14 then
  23.     set the foreColor of sprite 14 to 6
  24.   end if
  25. end
  26.  
  27. on nolight
  28.   set the foreColor of sprite 10 to 0
  29.   set the foreColor of sprite 11 to 0
  30.   set the foreColor of sprite 12 to 0
  31.   set the foreColor of sprite 13 to 0
  32.   set the foreColor of sprite 14 to 0
  33. end
  34.