﻿<?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 6  » Displaying message if no response detected before trial timeout</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Mon, 01 Jun 2026 13:13:41 GMT</lastBuildDate><ttl>20</ttl><item><title>Displaying message if no response detected before trial timeout</title><link>https://forums.millisecond.com/Topic36558.aspx</link><description>Apologies in advance for what I feel pretty sure is a pretty simple function to program!&lt;br/&gt;&lt;br/&gt;I am creating a study in which I want to present an orienting stimulus for 1500 ms. During this time I do not want any responses recorded. Then, a target stimulus is displayed for 1200 ms or until the participant responds. If the participant responds within this 1200 ms windown, the program should advance to the next trial. If the participant does NOT respond during this 1200 ms window, the program should display an error message that says "PLEASE RESPOND FASTER!!!" for 600 ms, and should then advance to the next trial.&lt;br/&gt;&lt;br/&gt;I feel like this should be pretty simple to implement, but I'm having trouble getting it to work correctly. Any guidance would be most appreciated!</description><pubDate>Fri, 11 Oct 2024 19:29:06 GMT</pubDate><dc:creator>satchmo496</dc:creator></item><item><title>RE: Displaying message if no response detected before trial timeout</title><link>https://forums.millisecond.com/Topic36560.aspx</link><description>&lt;blockquote data-id="36559" class="if-quote-wrapper" unselectable="on" data-guid="1728674933810" contenteditable="false" id="if_insertedNode_1728674933695"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="36559" 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="36559" 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="36559" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Dave - 10/11/2024&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-36559"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;&lt;blockquote data-id="36558" class="if-quote-wrapper" unselectable="on" data-guid="1728674933810" contenteditable="false" id="if_insertedNode_1728671441654"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="36558" 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="36558" 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="36558" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;satchmo496 - 10/11/2024&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-36558"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Apologies in advance for what I feel pretty sure is a pretty simple function to program!&lt;br/&gt;&lt;br/&gt;I am creating a study in which I want to present an orienting stimulus for 1500 ms. During this time I do not want any responses recorded. Then, a target stimulus is displayed for 1200 ms or until the participant responds. If the participant responds within this 1200 ms windown, the program should advance to the next trial. If the participant does NOT respond during this 1200 ms window, the program should display an error message that says "PLEASE RESPOND FASTER!!!" for 600 ms, and should then advance to the next trial.&lt;br/&gt;&lt;br/&gt;I feel like this should be pretty simple to implement, but I'm having trouble getting it to work correctly. Any guidance would be most appreciated!&lt;a class="if-quote-goto quote-link" href="#" data-id="36558"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;It is simple to implement:&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;trial exampleTrial&amp;gt;&lt;br/&gt;/ stimulustimes = [0=clearScreen, orientingStimulus; 1500=clearScreen, targetStimulus]&lt;br/&gt;/ timeout = 2700&lt;br/&gt;/ responsemessage = (0, respondFaster, 600) // display respond faster message in case of no response&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text orientingStimulus&amp;gt;&lt;br/&gt;/ items = ("Orienting Stimulus for 1500ms")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text targetStimulus&amp;gt;&lt;br/&gt;/ items = ("Target Stimulus for up to 1200ms")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text respondFaster&amp;gt;&lt;br/&gt;/ items = ("Respond Faster Message in case of no response for 600ms")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block exampleBlock&amp;gt;&lt;br/&gt;/ trials = [1-4 = exampleTrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;[/code]&lt;br/&gt;&lt;br/&gt;Generally see &lt;a href="https://www.millisecond.com/support/docs/current/html/howto/howtocontroltiming.htm"&gt;&lt;a href="https://www.millisecond.com/support/docs/current/html/howto/howtocontroltiming.htm"&gt;https://www.millisecond.com/support/docs/current/html/howto/howtocontroltiming.htm&lt;/a&gt;&lt;/a&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="36559"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;Thanks a million!</description><pubDate>Fri, 11 Oct 2024 19:29:06 GMT</pubDate><dc:creator>satchmo496</dc:creator></item><item><title>RE: Displaying message if no response detected before trial timeout</title><link>https://forums.millisecond.com/Topic36559.aspx</link><description>&lt;blockquote data-id="36558" class="if-quote-wrapper" unselectable="on" data-guid="1728671442217" contenteditable="false" id="if_insertedNode_1728671441654"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="36558" 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="36558" 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="36558" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;satchmo496 - 10/11/2024&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-36558"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Apologies in advance for what I feel pretty sure is a pretty simple function to program!&lt;br/&gt;&lt;br/&gt;I am creating a study in which I want to present an orienting stimulus for 1500 ms. During this time I do not want any responses recorded. Then, a target stimulus is displayed for 1200 ms or until the participant responds. If the participant responds within this 1200 ms windown, the program should advance to the next trial. If the participant does NOT respond during this 1200 ms window, the program should display an error message that says "PLEASE RESPOND FASTER!!!" for 600 ms, and should then advance to the next trial.&lt;br/&gt;&lt;br/&gt;I feel like this should be pretty simple to implement, but I'm having trouble getting it to work correctly. Any guidance would be most appreciated!&lt;a class="if-quote-goto quote-link" href="#" data-id="36558"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;It is simple to implement:&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;trial exampleTrial&amp;gt;&lt;br/&gt;/ stimulustimes = [0=clearScreen, orientingStimulus; 1500=clearScreen, targetStimulus]&lt;br/&gt;/ timeout = 2700&lt;br/&gt;/ responsemessage = (0, respondFaster, 600) // display respond faster message in case of no response&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text orientingStimulus&amp;gt;&lt;br/&gt;/ items = ("Orienting Stimulus for 1500ms")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text targetStimulus&amp;gt;&lt;br/&gt;/ items = ("Target Stimulus for up to 1200ms")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text respondFaster&amp;gt;&lt;br/&gt;/ items = ("Respond Faster Message in case of no response for 600ms")&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block exampleBlock&amp;gt;&lt;br/&gt;/ trials = [1-4 = exampleTrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;[/code]&lt;br/&gt;&lt;br/&gt;Generally see &lt;a href="https://www.millisecond.com/support/docs/current/html/howto/howtocontroltiming.htm"&gt;&lt;a href="https://www.millisecond.com/support/docs/current/html/howto/howtocontroltiming.htm"&gt;https://www.millisecond.com/support/docs/current/html/howto/howtocontroltiming.htm&lt;/a&gt;&lt;/a&gt;</description><pubDate>Fri, 11 Oct 2024 18:37:03 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>