Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: Эта возможность может быть недоступна в некоторых браузерах.
I want replace the finishedpage by a message box, after installation. It is possible?
procedure CurStepChanged(CurStep: TSetupStep);
begin
case CurStep of
ssDone : MsgBox(CustomMessage('Finished'), mbInformation, MB_OK);
// If DisableFinishedPage=yes in [Setup] section you can replace ssDone to ssPostInstall
end;
end;