wwkuter1, since you've mentioned you're a C programmer, I suppose when you write \" you mean a literal " character. Perhaps you've figured it out already, but AutoHotkey uses ` as an
escape character; except with double-quote marks, which must be doubled up to be interpreted literally in an
expression:
Quote:
To include an actual quote-character inside a literal string, specify two consecutive quotes as shown twice in this example: "She said, ""An apple a day."""Source: Variables and Expressions \ has special meaning only in regular expressions, which are processed at a much later stage than ` or "".
Quote:
Is it possible to make Inputbox have multiple input field?
It is not. However, it can easily be accomplished with AutoHotkey's
GUI command/framework. A very basic example:
Code:
Gui, Add, Text,, Put your prompt here.
Gui, Add, Edit, vFirst
Gui, Add, Edit, vSecond
Gui, Add, Edit, vThird
Gui, Add, Button,, OK
Gui, Add, Button, x+10, Cancel
Gui, Show
return
ButtonOK:
Gui, Submit
MsgBox %First%, %Second%, %Third%
ButtonCancel:
GuiClose:
ExitApp