﻿<?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  » stimuli appearing after some seconds from block start and stay till the end of the block</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Sat, 19 Sep 2026 06:01:44 GMT</lastBuildDate><ttl>20</ttl><item><title>stimuli appearing after some seconds from block start and stay till the end of the block</title><link>https://forums.millisecond.com/Topic32488.aspx</link><description>For my experiment, a block starts with a 2-second countdown, then 5s fixation on a cross and then a set of 24 trials that have emotion words appearing on each side of the screen for all these trials till the end of the block. In previous experiment these words appeared in the beginning of the block and stayed till the end with /bgstim attibute. However now, I would like this words to appear not at the very beginning, but AFTER the 5s fixation and stay till the end of the block.&lt;br/&gt;How should I do that?&lt;br/&gt;Thank you in advance for your help.&lt;br/&gt;</description><pubDate>Mon, 22 Nov 2021 14:34:49 GMT</pubDate><dc:creator>Athanasia</dc:creator></item><item><title>RE: stimuli appearing after some seconds from block start and stay till the end of the block</title><link>https://forums.millisecond.com/Topic32492.aspx</link><description>&lt;blockquote data-id="32491" class="if-quote-wrapper" unselectable="on" data-guid="1637591299897" id="if_insertedNode_1637591299023" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="32491" 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="32491" 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="32491" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Athanasia - 11/22/2021&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-32491"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;thank you very much. I would like to have your opinion also in that:&lt;br/&gt;the position of these words should change BETWEEN participants according to their participant number (odd number: word DISGUST on the left and word FEAR on the right - even number: word FEAR on the left and word DISGUST on the right).&lt;br/&gt;I created this:&lt;br/&gt;...&lt;br/&gt;&amp;lt;text disgust_left&amp;gt;&lt;br/&gt;/ items = ("DISGUST")&lt;br/&gt;/ position = (10,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text disgust_right&amp;gt;&lt;br/&gt;/ items = ("DISGUST")&lt;br/&gt;/ position = (90,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fear_left&amp;gt;&lt;br/&gt;/ items = ("FEAR")&lt;br/&gt;/ position = (10,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fear_right&amp;gt;&lt;br/&gt;/ items = ("FEAR")&lt;br/&gt;/ position = (90,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;....&lt;br/&gt;&lt;br/&gt;&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ ontrialbegin = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (script.subjectid==1) trial.mytrial.insertstimulustime(text.disgust_left,text.fear_right, 0)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;else trial.mytrial.insertstimulustime(text.disgust_right,text.fear_left, 0) &lt;br/&gt;]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial?&lt;br/&gt;&lt;br/&gt;But it doesn't work.&lt;br/&gt;Any better idea?&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="32491"&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;FIrst, that's not how you test whether the subject ID is odd or even, and second, your use of the insertstimulustime() function is wrong. It has &lt;strong&gt;two &lt;/strong&gt;arguments, the stimulus and the time, not three.&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ ontrialbegin = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (mod(script.subjectid, 2) == 1) {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;trial.mytrial.insertstimulustime(text.disgust_left, 0);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;trial.mytrial.insertstimulustime(text.fear_right, 0);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;} else {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;trial.mytrial.insertstimulustime(text.disgust_right, 0);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;trial.mytrial.insertstimulustime(text.fear_left, 0);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br/&gt;]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial&amp;gt;[/code]</description><pubDate>Mon, 22 Nov 2021 14:34:49 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: stimuli appearing after some seconds from block start and stay till the end of the block</title><link>https://forums.millisecond.com/Topic32491.aspx</link><description>thank you very much. I would like to have your opinion also in that:&lt;br/&gt;the position of these words should change BETWEEN participants according to their participant number (odd number: word DISGUST on the left and word FEAR on the right - even number: word FEAR on the left and word DISGUST on the right).&lt;br/&gt;I created this:&lt;br/&gt;...&lt;br/&gt;&amp;lt;text disgust_left&amp;gt;&lt;br/&gt;/ items = ("DISGUST")&lt;br/&gt;/ position = (10,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text disgust_right&amp;gt;&lt;br/&gt;/ items = ("DISGUST")&lt;br/&gt;/ position = (90,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fear_left&amp;gt;&lt;br/&gt;/ items = ("FEAR")&lt;br/&gt;/ position = (10,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fear_right&amp;gt;&lt;br/&gt;/ items = ("FEAR")&lt;br/&gt;/ position = (90,50)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;....&lt;br/&gt;&lt;br/&gt;&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ ontrialbegin = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (script.subjectid==1) trial.mytrial.insertstimulustime(text.disgust_left,text.fear_right, 0)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;else trial.mytrial.insertstimulustime(text.disgust_right,text.fear_left, 0) &lt;br/&gt;]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial?&lt;br/&gt;&lt;br/&gt;But it doesn't work.&lt;br/&gt;Any better idea?&lt;br/&gt;</description><pubDate>Mon, 22 Nov 2021 14:15:00 GMT</pubDate><dc:creator>Athanasia</dc:creator></item><item><title>RE: stimuli appearing after some seconds from block start and stay till the end of the block</title><link>https://forums.millisecond.com/Topic32489.aspx</link><description>&lt;blockquote data-id="32488" class="if-quote-wrapper" unselectable="on" data-guid="1637583950711" id="if_insertedNode_1637583949835" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="32488" 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="32488" 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="32488" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Athanasia - 11/22/2021&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-32488"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;For my experiment, a block starts with a 2-second countdown, then 5s fixation on a cross and then a set of 24 trials that have emotion words appearing on each side of the screen for all these trials till the end of the block. In previous experiment these words appeared in the beginning of the block and stayed till the end with /bgstim attibute. However now, I would like this words to appear not at the very beginning, but AFTER the 5s fixation and stay till the end of the block.&lt;br/&gt;How should I do that?&lt;br/&gt;Thank you in advance for your help.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="32488"&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;Move the respective &amp;lt;text&amp;gt; elements from /bgstim to the respective &amp;lt;trial&amp;gt; elements' /stimulustimes or -frames, and set their /erase attributes to false.</description><pubDate>Mon, 22 Nov 2021 12:26:47 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>