Group: Administrators
Posts: 13K,
Visits: 103K
|
You need to add the attribute to the <surveypage> element. If no /finishlabel attribute is specified, Inquisit will use the default text.
I.e.,
<surveypage Pleasure2> ... / finishlabel = "Next >>" </surveypage>
/nextlabel won't do anything here, because /nextlabel only applies if another page follows. Consider the following example to see the difference:
<survey mysurvey> / pages = [1=a; 2=b] / backlabel = "BACKLABEL ATTRIBUTE" / nextlabel = "NEXTLABEL ATTRIBUTE" / finishlabel = "FINISHLABEL ATTRIBUTE" </survey>
<surveypage a> / caption = "1st page" </surveypage>
<surveypage b> / caption = "2nd page" </surveypage>
|