ProsperousOne
Joined: 19 Sep 2005 Posts: 115
|
Posted: Fri Mar 27, 2009 3:13 pm Post subject: Trivial: Why the extra escape character? |
|
|
I use the following code to place a Message box with the line number, a blank line, and an empty variable (%%) when I'm debugging code.
| Code: |
+^m::
SetKeyDelay, -1
Send, Msgbox, Msg Line:`%A_LineNumber`%``n``n
Return |
However, I get an extra escape character "`" after the last "n," as in
| Code: |
Msgbox, Msg Line:`%A_LineNumber`%``n``n`
|
Any ideas why?
I have a work around, py placing the following after the send,
| Code: | sleep, 20
send, {del}
|
But I'm just curious why the extra "`".
P1 |
|