Uninstaller, removal of header text
Hi
I've read a lot of post, the documentation etc...
I cannot remove the text "Uninstall my application blabla".. at the upper left of the application. It comes over my left branding (or top) and I really want to get rid of it.
For the install phase, I've been able to found in the documentation the right function to override, it's :
!define MUI_CUSTOMFUNCTION_GUIINIT myGUIInit
and then
Function myGUIInit ; nom arbitraire
skinnedbutton::skinit /NOUNLOAD "$PLUGINSDIR\button.bmp" ; good
Pop $0
StrCmp $0 "success" noerror
MessageBox MB_ICONEXCLAMATION|MB_OK "skinned button error: $0"
noerror:
!define MUI_PAGE_CUSTOMFUNCTION_PRE preFonction ; Pour ne pas avoir de texte dans le graphique
!define MUI_PAGE_CUSTOMFUNCTION_SHOW showFunction ; Pour ne pas avoir de texte dans le graphique
!insertmacro MUI_HEADER_TEXT " " " "
FunctionEnd
and
; CETTE MÉTHODE PERMET, ainsi que preFonction, de supprimer le texte et sous-texte en haut du dialogue.
; Doit être appellée juste avant !insertmacro dialogue
Function showFunction
!insertmacro MUI_HEADER_TEXT " " " "
FunctionEnd
; CETTE MÉTHODE PERMET, ainsi que showFunction, de supprimer le texte et sous-texte en haut du dialogue.
; Doit être appellée juste avant !insertmacro dialogue
Function preFonction
!insertmacro MUI_HEADER_TEXT " " " "
FunctionEnd
But, how can I do the same this for the UNINSTALLER ?
I'm really tired, can't count the hours in the last 3 weeks I've tried to find that. It's probably very very easy, but I can't figure out.
Thanks in advance for ANY help.
Philippe