Archive: newbie question


newbie question
Can anyone tell me if it is possible to concatenate string constants and variables within the .nsi script file?


Read this Doc from Nsis:

http://nsis.sourceforge.net/Docs/Chapter3.html#3.1

About

To extend a command over multiple lines, use a backslash (\) at the end of the line, and the next line will effectively be concatenated the end of it.
Hope this help...

Yes milkboy, it is. Just write them one after the other, it works. For example:

"this is a var: $0. this is a constant ${CONSTANT}"


Thanks dark_boy and kichik!