Group: Administrators
Posts: 13K,
Visits: 104K
|
Yes. Suppose you have store the total in values.totalpoints. To display it in a <text> element via a <trial> do:
<text youtotalpoints> / items = ("You have achieved <%values.totalpoints%> points! Congratulations!") ... </text>
<trial feedbacktrial> / stimulusframes = [1=yourtotalpoints] ... </trial>
If you want the total to be displayed in all your trials, add the yourtotalpoints stimulus to those trial's /stimulustimes or -frames.
Displaying it in an instruction <page> works the same:
<page feedbackpage> You have achieved <%values.totalpoints%> points. Congratulations! </page>
<block someblock> / postinstructions = (feedbackpage) ... </block>
|