NEXTBUTTON
block can appear in each
PAGE
block and specifies
the index of the page which WarpIN should turn to when the "Next" button
is pressed as well as the text on the button itself.
See the "Installation Scripts" page for an overview where this element should be placed.
The opening <NEXTBUTTON>
tag must have the
TARGET="i"
attribute, with i
being the index of the page that WarpIN should turn to when the button
is pressed (as specified with another <PAGE
INDEX="i" ... >
element).
If the NEXTBUTTON
block is not specified, WarpIN will
display a button called "Next", which turns to the page which has the
index of the current page plus one. That is, if the current page is page
3, the "Next" button will turn to page 4.
If the TARGET="0"
index is specified, this indicates to WarpIN
that the current page is the last page and pressing the "Next" button
should start the actual installation. So the last page must have the
NEXTBUTTON
element.
In between the <NEXTBUTTON> ... </NEXTBUTTON>
tags, you must specify what should be displayed on the button. Use the "~"
character to have the following character underlined for keyboard shortcuts.
For most pages, this will be something like "~Next", but you can also specify
"I ~agree" or whatever you like.
Examples:
<PAGE INDEX="1" ...> <NEXTBUTTON TARGET="2">~Next</NEXTBUTTON> </PAGE> <PAGE INDEX="2" ...> <NEXTBUTTON TARGET="0">~Install</NEXTBUTTON> </PAGE>