How to show Custom Page with some text for 15 s?
Hello
I would like to do an installer with custom page. On that custom page there will be some very important text - user must read this text, so I want to .
For example:
...
!insertmacro MUI_PAGE_INSTFILES ; installing files
Page custom CreateMe CheckMe "" ; creating custom page
!insertmacro MUI_PAGE_FINISH ; finishing installer
...
Function CreateMe
InstallOptions::initDialog /NOUNLOAD "$PLUGINSDIR\test.ini"
!insertmacro MUI_HEADER_TEXT "Some text" "Some other text"
InstallOptions::show
FunctionEnd
Function CheckMe
;???
FunctionEnd
How to do that Custom Page will be shown, after installing files with "Next" button dissabled (on this custom page). After 15 seconds all buttons (back, next) must be enabled - user can click this button and finish installer
Is it also possible to show, on disabled "Next" button, counting down from 15 to 0 - that user could see progress to enable buttons.
If anybody knows how to do this, please help me. Thanks
Regards!