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

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