 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
kapege.de
Joined: 07 Feb 2005 Posts: 188 Location: Munich, Germany
|
Posted: Tue May 10, 2005 12:17 pm Post subject: Line continuation |
|
|
Hi!
| Code: | MsgBox, 64,
(
...
)
|
Does not work (win98), neither this:
| Code: | MsgBox,
(
64,
...
)
|
Or did I misunderstand the explanation?
Thanx,
Peter |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10480
|
Posted: Tue May 10, 2005 9:09 pm Post subject: |
|
|
By default, commas inside the continuation section's parentheses are literal rather than being command delimiters (you can specify a comma in the options to override this).
Try this example: | Code: | MsgBox, 64, ; Two "real" commas.
(
title of box, note that any comma in here is literal by default.
), text inside box ; One "real" comma since it's outside the parentheses. |
|
|
| 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
|