+xHi
I have a couple of surveys spread out through a number of tests in a script and i am adding in my pre/posttrialpause's to smooth out the test but i am not able to add / pretrialpause or a /posttrialpause to a <surveypage> any ideas why?
It keeps telling me its not a valid attribute although it appears as an attribute
here ??
Kind Regards
Zoe
<surveypage>s don't have /pre- or /posttrialpause attributes. The listing in the language reference topic for the <surveypage> element is in error (sorry about the confusion). The language reference topics for those attributes, however, are correct in that <surveypage> is not listed among the elements /pre- and /posttrialpause apply to.
https://www.millisecond.com/support/docs/v5/html/language/attributes/pretrialpause.htmIf you need to add some sort of interval between pages, you could, for example, run a <surveypage> between them with a /timeout and its navigation button inaccessible.
<survey mysurvey>
/ pages = [1=pg1; 2=pg2; 3=pg3]
/ showpagenumbers = false
/ showquestionnumbers = false
/ showbackbutton = false
</survey>
<surveypage pg1>
/ questions = [1=q1]
/ branch = [surveypage.intervalpage]
</surveypage>
<surveypage pg2>
/ questions = [1=q2]
/ branch = [surveypage.intervalpage]
</surveypage>
<surveypage pg3>
/ questions = [1=q3]
/ branch = [surveypage.intervalpage]
</surveypage>
<surveypage intervalpage>
/ timeout = 1000
/ nextbuttonposition = (-10%,-10%)
</surveypage>
<textbox q1>
/ caption = "Q1"
</textbox>
<textbox q2>
/ caption = "Q2"
</textbox>
<textbox q3>
/ caption = "Q3"
</textbox>