 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
ahk_man
Joined: 20 Jun 2004 Posts: 39
|
Posted: Sat Jul 31, 2004 10:02 am Post subject: Escape Sequences...maybe buggy |
|
|
Hi,
Could you give me an example how I can use the Escape Sequence using FormFeed(`f), VerticalTab(`v), and alert (`a)? All three sequences doesn't seem to work when I tried to use it, however, the rest work fine. |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Sat Jul 31, 2004 12:56 pm Post subject: |
|
|
As far as I know, those three don't do much in modern applications except for Telnet, PuTTY, and other related software. In addition, `f (formfeed) and `v (vert tab) probably have meaning when sent directly to some kinds of printers. In such cases, `a (Alert) typically sounds a beep, `f (formfeed) clears the screen or (for a printer) perhaps starts a new page, and I don't really know what vertical tab does other than the behavior one might expect it to have for a printer.
These escape sequences were added because they correspond to actual ASCII characters that can exist in a string, even though they are rarely used.
`f (formfeed) = ^l (Ascii 12)
`a (alert) = ^g (Ascii 7)
`v (vert tab) = ^k (Ascii 11)
I've updated the help file to reflect some of this. |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|