Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!csd4.milw.wisc.edu!bionet!agate!ucbvax!tut.cis.ohio-state.edu!rutgers!bellcore!texbell!sw1e!uncosb From: uncosb@sw1e.UUCP (6300]) Newsgroups: comp.terminals,comp.terminals.tty5620 Subject: Re: AT&T 4425 terminal; Routines to setup function keys. Keywords: programming fuction keys AT&T 4425 5420 Message-ID: <1447@sw1e.UUCP> Date: 30 Mar 89 17:14:09 GMT References: <5229@cbnews.ATT.COM> Reply-To: uncosb@sw1e.UUCP (Steve Brown [501-373-6300]) Organization: Southwestern Bell Telephone Co Lines: 34 In article <5229@cbnews.ATT.COM> dar@cbnews.ATT.COM (David A. Roth) writes: >Has anyone put together some routines to program the fuction keys >on the AT&T 4425 terminals? > > >Thanks in advance. > > >AT&T Bell Laboratories >David A. Roth >uucp: att!cblpn!dar > dar@cblpn.att.com I use the BASIC code below the download my fuction keys. Maybe it will help you. Notice the number of characters including the must be entered. This is the 6 on the first line and the 9 on the second line. EXAMPLE: steve + = 6 jesus1st + = 9 The spaces and the f1 is the label and steve is the data that is sent when f1 is pressed, ect. Thanks, Steve Brown <-----Cut Here-----> 10 ?chr$(27);"[1;6;2;1q f1 steve";chr$(13) 20 ?chr$(27);"[2;9;2;1q f2 jesus1st";chr$(13) 30 ?chr$(27);"[3;3;2;1q f3 f3";chr$(13) 40 ?chr$(27);"[4;3;2;1q f4 f4";chr$(13) 50 ?chr$(27);"[5;3;2;1q f5 f5";chr$(13) 60 ?chr$(27);"[6;3;2;1q f6 f6";chr$(13) 70 ?chr$(27);"[7;3;2;1q f7 f7";chr$(13) 80 ?chr$(27);"[8;3;2;1q f8 f8";chr$(13)