Archive: Looping over pages


Looping over pages
I use this first page to decide whether to show several others:
--------------------------------------------------------
Software Audit

[x] Python C:\Python24\Python.exe
[ ] Perl C:\PROGRA~1\Perl\bin\perl.exe
[ ] LaTeX
... Several more components

Select an item for more details or to download a missing package.
--------------------------------------------------------

Here, $VisitPythonPage is set and used in the enter function for this page to decide whether to show the page or not:

Function DownloadPython
${if} "$VisitPythonPage" == "1"
...
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "download.ini"
${endif}
FunctionEnd

My question: if any of these $VisitFooPage variables are set, I'd like to loop back to the first "Software Audit" page at the end. Is such a thing possible?

Angus


Use this to jump to another page:
http://nsis.sourceforge.net/wiki/Go_to_a_NSIS_Page

-Stu


Thank you, Stu.
Angus