AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Escape Sequences...maybe buggy

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
ahk_man



Joined: 20 Jun 2004
Posts: 39

PostPosted: Sat Jul 31, 2004 10:02 am    Post subject: Escape Sequences...maybe buggy Reply with quote

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
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10467

PostPosted: Sat Jul 31, 2004 12:56 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group