I know I can easily get messages inside

[CustomMessages]
AdditionalIcons=blablabla

using this code:

ExpandConstant('{cm:AdditionalIcons}');

which gets the AdditionalIcons string message. However, how can I get messages inside this?

[Messages]
ButtonNext=huhu
ButtonInstall=bubu

What I need is to get the ButtonNext, ButtonInstall and other values, and it is NOT possible to get those values using code like this:

ExpandConstant('{cm:ButtonNext}');

How can I query those values?

Related links

Inno Setup Script tips

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Try

SetupMessage(msgButtonNext);

In general, the name of the constant to use (in this case msgButtonNext) is msg + the name of the message (string concatination).

link|improve this answer
Awesome! Thank you very much!! – Paja Aug 17 '10 at 0:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.