Gets or sets the label of the finish button.
<instruct> <survey> <surveyPage>
object.name.finishLabel
Read/Write
string
This is useful for dynamically setting the label for the finish button used in navigating survey and instruction pages.
The following displays the current finish label:
<text myText>
/ items= ("correct = <% instruct.finishLabel %>")
</text>
The following displays the current finish label in an instruction page:
<page myPage>
correct = <% survey.survey1.finishLabel %>
</page>
The following shows how to edit the finish label for the exit page.
<block end>
/ onBlockBegin = {
instruct.finishLabel = "press [space] to exit";
}
/ preInstructions = (end)
</block>