this is what I do to change the text of my pages :
for the finishpage :
var MUI_FINISHPAGE_TITLE
and then, in the .onInit :
!define MUI_FINISHPAGE_TITLE "$MUI_FINISHPAGE_TITLE"
!insertmacro MUI_UNPAGE_FINISH
this way, i can define a different text in function of the different values of a .ini temp fileStrCpy $MUI_FINISHPAGE_TITLE "blabla"
-----> this works great
now, this is what I'm trying to do :
and then :!define MUI_PAGE_CUSTOMFUNCTION_PRE "bla"
!define MUI_FINISHPAGE_TITLE "$MUI_FINISHPAGE_TITLE"
!insertmacro MUI_UNPAGE_FINISH
the same thing but outside the .onInit does not work...
Function bla
StrCpy $MUI_FINISHPAGE_TITLE "blabla"
FunctionEnd
why ?
how can I change the variable value inside my function ?
thx for your eternal and great answers, guys 😉