Archive: MUI Setup with Hide Installpage


MUI Setup with Hide Installpage
Hi,

my setup needs very much time to install,

now i want made a Dynamik background,

is it possible to show welcomepage, licensepage ... but not the Installpage, can i hide this? or minimized or can i change size and postion?.

I need this, because i want made a setup program kike the windowssetup (what is new with Program XYZ.....)


Thanks for reply


!define MUI_PAGE_CUSTOMFUNCTION_PRE "HideInst"
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE "InstToFront"
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH

Function HideInst
HideWindow
FunctionEnd
Function InstToFront
BringToFront
FunctionEnd


it works