Millisecond Forums

How to add message at the end of IAT

https://forums.millisecond.com/Topic17994.aspx

By kerryneus - 12/17/2015

Hi,

How do I add a message like "You have reached the end of this task" to the end of my IAT? I opted not to show participants the summary feedback, so when they finish the last trial of the IAT it just exits abruptly.
By Dave - 12/17/2015

You can add a <page> element with your "you reached the end of the task" message to the script and display it via the <expt> elements' /postinstructions.

<page endpage>
You have reached the end of the task. Thanks for participating.
</page>

<expt>
/ postinstructions = (endpage)
/ subjects = (1 of 2)
...
</expt>

<expt>
/ postinstructions = (endpage)
/ subjects = (2 of 2)
...
</expt>
By kerryneus - 12/17/2015

Thank you, that worked a treat.