﻿<?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 4  » feedback no response detected</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 30 Apr 2026 10:21:49 GMT</lastBuildDate><ttl>20</ttl><item><title>feedback no response detected</title><link>https://forums.millisecond.com/Topic16924.aspx</link><description>Hi,&lt;br/&gt;&lt;br/&gt;*just as a disclaimer, I am new to Inquisit and have no background in programming and coding*&lt;br/&gt;&lt;br/&gt;I am using the ANT CRSD and would like to display an error feedback with the text "no response detected" &amp;nbsp;if participants do not give a response.&lt;br/&gt;At this moment the feedback is 'Error' &amp;nbsp;(when the participant presses the incorrect key AND when there is no response before timeout) or 'Correct (when the participant presses the correct key).&lt;br/&gt;&lt;br/&gt;I have already made the following changes to the script:&lt;br/&gt;&amp;lt;item practicefeedback&amp;gt;&lt;br/&gt;/1 = "Error"&lt;br/&gt;/2 = "Correct"&lt;br/&gt;&lt;strong&gt;/0 = "No response detected"&lt;/strong&gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;which has had no effect.&lt;br/&gt;I think I have to make an additional change to the following section, but am not sure how to work with the if - else section as I want to have 3 rather than 2 options:&amp;nbsp;&lt;br/&gt;I would like to add "no response detected" in this format:&amp;nbsp;{text.feedback.textcolor = red; values.selectfeedback = 0&lt;br/&gt;&lt;br/&gt;&amp;lt;trial practice_feedback&amp;gt;&lt;br/&gt;/ontrialbegin = [if (values.validcorrect == 1) {text.feedback.textcolor = green; values.selectfeedback = 2} else {text.feedback.textcolor = red; values.selectfeedback = 1}]&lt;br/&gt;/stimulusframes = [1 = fixation, feedback, rtfeedback]&lt;br/&gt;/trialduration = values.practicefeedback_duration&lt;br/&gt;/branch = [trial.iti]&lt;br/&gt;/recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;Thank you for your help!&lt;br/&gt;Julia</description><pubDate>Tue, 11 Aug 2015 06:52:02 GMT</pubDate><dc:creator>JuliaH</dc:creator></item><item><title>RE: feedback no response detected</title><link>https://forums.millisecond.com/Topic16936.aspx</link><description>clear, thanks!</description><pubDate>Tue, 11 Aug 2015 06:52:02 GMT</pubDate><dc:creator>JuliaH</dc:creator></item><item><title>RE: feedback no response detected</title><link>https://forums.millisecond.com/Topic16935.aspx</link><description>No reason except for testing purposes (having a record in the data file that allows for checking whether the proper feedback was presented). Once you've ensured that you can safely set it back to false.&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 06:36:04 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: feedback no response detected</title><link>https://forums.millisecond.com/Topic16934.aspx</link><description>Thank you Dave, it works!&lt;br/&gt;&lt;br/&gt;What is the reason for changing&amp;nbsp;&lt;br/&gt;/recorddata = false &lt;br/&gt;to&lt;br/&gt;&amp;nbsp;/recorddata = true ?&lt;br/&gt;&lt;br/&gt;I assumed that before data was not recorded as feedback was given during practice only.&lt;br/&gt;Julia</description><pubDate>Tue, 11 Aug 2015 06:31:08 GMT</pubDate><dc:creator>JuliaH</dc:creator></item><item><title>RE: feedback no response detected</title><link>https://forums.millisecond.com/Topic16928.aspx</link><description>This should work more reliably, but let me know if you encounter any problems with it:&lt;br/&gt;&lt;br/&gt;&amp;lt;trial practice_feedback&amp;gt;&lt;br/&gt;/ontrialbegin = [if (values.validcorrect == 1) {text.feedback.textcolor = green; values.selectfeedback = 2} else {text.feedback.textcolor = red; values.selectfeedback = 1}]&lt;br/&gt;/ontrialbegin = [if (block.ant_practice.latency &amp;gt;= 1500) {text.feedback.textcolor = red; values.selectfeedback = 3}]&lt;br/&gt;&lt;br/&gt;/stimulusframes = [1 = fixation, feedback, rtfeedback]&lt;br/&gt;/trialduration = values.practicefeedback_duration&lt;br/&gt;/branch = [trial.iti]&lt;br/&gt;/recorddata = true&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 05:13:55 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: feedback no response detected</title><link>https://forums.millisecond.com/Topic16926.aspx</link><description>Please disregard the above for the time being. I think there is a slight mistake which will lead to the wrong feedback being given under certain circumstances. I will post corrected code ASAP.&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 05:04:11 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: feedback no response detected</title><link>https://forums.millisecond.com/Topic16925.aspx</link><description>You want&lt;br/&gt;&lt;br/&gt;&amp;lt;trial practice_feedback&amp;gt;&lt;br/&gt;/ontrialbegin = [if (values.validcorrect == 1) {text.feedback.textcolor = green; values.selectfeedback = 2} &lt;br/&gt;&lt;strong&gt;else if (block.ant_practice.response == "0") {text.feedback.textcolor = red; values.selectfeedback = 3}&lt;/strong&gt;&lt;br/&gt;else {text.feedback.textcolor = red; values.selectfeedback = 1}]&lt;br/&gt;/stimulusframes = [1 = fixation, feedback, rtfeedback]&lt;br/&gt;/trialduration = values.practicefeedback_duration&lt;br/&gt;/branch = [trial.iti]&lt;br/&gt;/recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 04:31:55 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>