up Inquisit Language Reference

finishLabel property

Gets or sets the label of the finish button.

Member of

<instruct> <survey> <surveyPage>

Syntax

object.name.finishLabel

Read/Write

Type

string

Remarks

This is useful for dynamically setting the label for the finish button used in navigating survey and instruction pages.

Examples

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>

Copyright Millisecond Software, LLC. All rights reserved.