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 

Line continuation

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Bug Reports
View previous topic :: View next topic  
Author Message
kapege.de



Joined: 07 Feb 2005
Posts: 188
Location: Munich, Germany

PostPosted: Tue May 10, 2005 12:17 pm    Post subject: Line continuation Reply with quote

Hi!

Code:
MsgBox, 64,
(
...
)

Does not work (win98), neither this:
Code:
MsgBox,
(
64,
...
)


Or did I misunderstand the explanation?

Thanx,
Peter
Back to top
View user's profile Send private message Visit poster's website
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Tue May 10, 2005 9:09 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Bug Reports 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