﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 5  » Making the performance summary/feedback screen optional</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 09 Apr 2026 13:45:57 GMT</lastBuildDate><ttl>20</ttl><item><title>Making the performance summary/feedback screen optional</title><link>https://forums.millisecond.com/Topic27840.aspx</link><description>Hi All&lt;br/&gt;&lt;br/&gt;I am looking to take a script from the Inquisit Test Library, in particular two scripts from the IAT section&amp;nbsp;&lt;a href="https://www.millisecond.com/download/library/iat/"&gt;&lt;a href="https://www.millisecond.com/download/library/iat/"&gt;https://www.millisecond.com/download/library/iat/&lt;/a&gt;&lt;/a&gt;&amp;nbsp;and edit it so that the first screen has respondents decide (YES or NO) whether to see the final performance summary screen, or not.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Could anyone please point me in the direction of some resources that could help me figure out how to go about doing this please? If so it would be much appreciated.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Kind regards&lt;br/&gt;&lt;br/&gt;Daniel</description><pubDate>Wed, 02 Oct 2019 06:29:36 GMT</pubDate><dc:creator>danielderbyshire</dc:creator></item><item><title>RE: Making the performance summary/feedback screen optional</title><link>https://forums.millisecond.com/Topic27842.aspx</link><description>&lt;div data-id="27841" class="if-quote-wrapper" unselectable="on" data-guid="1570022889462"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27841" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27841" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27841" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Dave - 10/2/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27841"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;div data-id="27840" class="if-quote-wrapper" unselectable="on" data-guid="1570022889462"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27840" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27840" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27840" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;danielderbyshire - 10/2/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27840"&gt;&lt;div class="if-quote-message-margin"&gt;Hi All&lt;br/&gt;&lt;br/&gt;I am looking to take a script from the Inquisit Test Library, in particular two scripts from the IAT section&amp;nbsp;&lt;a href="https://www.millisecond.com/download/library/iat/"&gt;&lt;a href="https://www.millisecond.com/download/library/iat/"&gt;https://www.millisecond.com/download/library/iat/&lt;/a&gt;&lt;/a&gt;&amp;nbsp;and edit it so that the first screen has respondents decide (YES or NO) whether to see the final performance summary screen, or not.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Could anyone please point me in the direction of some resources that could help me figure out how to go about doing this please? If so it would be much appreciated.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Kind regards&lt;br/&gt;&lt;br/&gt;Daniel&lt;a class="if-quote-goto quote-link" href="#" data-id="27840"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;The scripts already have a parameter (parameters.showsummaryfeedback) that determines whether the feedback is shown. All you need to do is add a &amp;lt;trial&amp;gt; to the scripts that sets the parameter to either false or true depending on the participant's response. &lt;br/&gt;&lt;br/&gt;&amp;lt;block summary_choice&amp;gt;&lt;br/&gt;/ trials = [1=summarychoicetrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial summarychoicetrial&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;if (trial.summarychoicetrial.response == 18) {&lt;br/&gt;parameters.showsummaryfeedback = true;&lt;br/&gt;} else if (trial.summarychoicetrial.response == 23) {&lt;br/&gt;parameters.showsummaryfeedback = false;&lt;br/&gt;};&lt;br/&gt;]&lt;br/&gt;/ stimulusframes = [1=summarychoice]&lt;br/&gt;/ validresponse = ("E", "I")&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text summarychoice&amp;gt;&lt;br/&gt;/ items = ("Do you want to see your results? Press 'E' for yes, press 'I' for no.")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;Then run the above block and trial before the summary block:&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ preinstructions = (iatintro)&lt;br/&gt;/subjects = (1 of 2)&lt;br/&gt;/groupassignment = groupnumber&lt;br/&gt;/ blocks = [&lt;br/&gt;1=targetcompatiblepractice; &lt;br/&gt;2=attributepractice; &lt;br/&gt;3=compatibletest1; &lt;br/&gt;4=compatibletestinstructions;&lt;br/&gt;5=compatibletest2; &lt;br/&gt;6=targetincompatiblepractice; &lt;br/&gt;7=incompatibletest1; &lt;br/&gt;8=incompatibletestinstructions;&lt;br/&gt;9=incompatibletest2; &lt;br/&gt;&lt;strong&gt;10=summary_choice;&lt;br/&gt;11=summary;&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;/onexptend = [values.completed = 1]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ preinstructions = (iatintro)&lt;br/&gt;/subjects = (2 of 2)&lt;br/&gt;/groupassignment = groupnumber&lt;br/&gt;/ blocks = [&lt;br/&gt;1=targetincompatiblepractice; &lt;br/&gt;2=attributepractice; &lt;br/&gt;3=incompatibletest1; &lt;br/&gt;4=incompatibletestinstructions;&lt;br/&gt;5=incompatibletest2; &lt;br/&gt;6=targetcompatiblepractice; &lt;br/&gt;7=compatibletest1; &lt;br/&gt;8=compatibletestinstructions; &lt;br/&gt;9=compatibletest2; &lt;br/&gt;&lt;strong&gt;10=summary_choice;&lt;br/&gt;11=summary;&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;/onexptend = [values.completed = 1]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="27841"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;That is absolutely fantastic, it worked perfectly, thank you so much for the help, that has really helped me to better understand how experiments are put together in Inquisit even beyond the narrow problem I described. Thanks again for taking the time to give such a detailed response.</description><pubDate>Wed, 02 Oct 2019 06:29:36 GMT</pubDate><dc:creator>danielderbyshire</dc:creator></item><item><title>RE: Making the performance summary/feedback screen optional</title><link>https://forums.millisecond.com/Topic27841.aspx</link><description>&lt;div data-id="27840" class="if-quote-wrapper" unselectable="on" data-guid="1570016036146"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="27840" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="27840" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="27840" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;danielderbyshire - 10/2/2019&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-27840"&gt;&lt;div class="if-quote-message-margin"&gt;Hi All&lt;br/&gt;&lt;br/&gt;I am looking to take a script from the Inquisit Test Library, in particular two scripts from the IAT section&amp;nbsp;&lt;a href="https://www.millisecond.com/download/library/iat/"&gt;&lt;a href="https://www.millisecond.com/download/library/iat/"&gt;https://www.millisecond.com/download/library/iat/&lt;/a&gt;&lt;/a&gt;&amp;nbsp;and edit it so that the first screen has respondents decide (YES or NO) whether to see the final performance summary screen, or not.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Could anyone please point me in the direction of some resources that could help me figure out how to go about doing this please? If so it would be much appreciated.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Kind regards&lt;br/&gt;&lt;br/&gt;Daniel&lt;a class="if-quote-goto quote-link" href="#" data-id="27840"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;The scripts already have a parameter (parameters.showsummaryfeedback) that determines whether the feedback is shown. All you need to do is add a &amp;lt;trial&amp;gt; to the scripts that sets the parameter to either false or true depending on the participant's response. &lt;br/&gt;&lt;br/&gt;&amp;lt;block summary_choice&amp;gt;&lt;br/&gt;/ trials = [1=summarychoicetrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial summarychoicetrial&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;if (trial.summarychoicetrial.response == 18) {&lt;br/&gt;parameters.showsummaryfeedback = true;&lt;br/&gt;} else if (trial.summarychoicetrial.response == 23) {&lt;br/&gt;parameters.showsummaryfeedback = false;&lt;br/&gt;};&lt;br/&gt;]&lt;br/&gt;/ stimulusframes = [1=summarychoice]&lt;br/&gt;/ validresponse = ("E", "I")&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text summarychoice&amp;gt;&lt;br/&gt;/ items = ("Do you want to see your results? Press 'E' for yes, press 'I' for no.")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;Then run the above block and trial before the summary block:&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ preinstructions = (iatintro)&lt;br/&gt;/subjects = (1 of 2)&lt;br/&gt;/groupassignment = groupnumber&lt;br/&gt;/ blocks = [&lt;br/&gt;1=targetcompatiblepractice; &lt;br/&gt;2=attributepractice; &lt;br/&gt;3=compatibletest1; &lt;br/&gt;4=compatibletestinstructions;&lt;br/&gt;5=compatibletest2; &lt;br/&gt;6=targetincompatiblepractice; &lt;br/&gt;7=incompatibletest1; &lt;br/&gt;8=incompatibletestinstructions;&lt;br/&gt;9=incompatibletest2; &lt;br/&gt;&lt;strong&gt;10=summary_choice;&lt;br/&gt;11=summary;&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;/onexptend = [values.completed = 1]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ preinstructions = (iatintro)&lt;br/&gt;/subjects = (2 of 2)&lt;br/&gt;/groupassignment = groupnumber&lt;br/&gt;/ blocks = [&lt;br/&gt;1=targetincompatiblepractice; &lt;br/&gt;2=attributepractice; &lt;br/&gt;3=incompatibletest1; &lt;br/&gt;4=incompatibletestinstructions;&lt;br/&gt;5=incompatibletest2; &lt;br/&gt;6=targetcompatiblepractice; &lt;br/&gt;7=compatibletest1; &lt;br/&gt;8=compatibletestinstructions; &lt;br/&gt;9=compatibletest2; &lt;br/&gt;&lt;strong&gt;10=summary_choice;&lt;br/&gt;11=summary;&lt;/strong&gt;&lt;br/&gt;]&lt;br/&gt;/onexptend = [values.completed = 1]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;</description><pubDate>Wed, 02 Oct 2019 04:43:32 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>