Notifications
Clear all
Configuration issues
0
Posts
2
Users
0
Reactions
230
Views
Topic starter
27/08/2008 2:37 pm
I am a user of Absolute Telnet version 7.12. I am trying to map a "Cariage Return" or "Enter" to one of the Function keys as part of a script and do not know how to program the Cariage Return. Please help 🙂 Thanks in advance...
[size=1][ August 27, 2008, 08:49 AM: Message edited by: Brian T. Pence ][/size]
27/08/2008 2:59 pm
Andrew,
So, you want to have the function key send a carriage return when pressed? The key mapping recognizes c-style escape notation, such as:
\\n (for newline)
\\t (for tab)
and hex notation \\xFF such as:
\\x1b (for escape)
\\x0d (for carriage return)
\\x0a (for linefeed)
Hope this helps!