home *** CD-ROM | disk | FTP | other *** search
/ Sill to Sash: A Professi… Guide to Windows & Doors / SILLTOSASH.BIN / 2.dcr / 00235.ls < prev    next >
Encoding:
Text File  |  2001-03-19  |  362 b   |  19 lines

  1. on keyDown
  2.   case the keyCode of
  3.     123:
  4.       puppetSound(3, member("confirm"))
  5.       set the member of sprite 46 to member("arrow_left_on")
  6.       go(#previous)
  7.     124:
  8.       puppetSound(3, member("confirm"))
  9.       go(1, "3")
  10.   end case
  11. end
  12.  
  13. on keyUp
  14.   case the keyCode of
  15.     123:
  16.       set the member of sprite 46 to member("arrow_left_off")
  17.   end case
  18. end
  19.