﻿<?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  » adopted Columbia Card Task</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Fri, 01 May 2026 18:37:22 GMT</lastBuildDate><ttl>20</ttl><item><title>adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16800.aspx</link><description>Hello,&amp;nbsp;&lt;br/&gt;&amp;nbsp; &amp;nbsp; I am totally new to Inquisit. I downloaded the CCT and made couple of modifications, such as&amp;nbsp;reduced cards to 6. My questions are as following:&lt;br/&gt;1. how to randomly choose cards from one of six cards by pressing "take card" button until subjects want to stop (by pressing the same button).&lt;br/&gt;2.I can't control the trial duration (10 seconds) by setting /response=timeout(10000), /timeout or /trialduration in &amp;lt;trial pickcard&amp;gt;.&lt;br/&gt;&lt;br/&gt;anyone can help me modify the syntax in the attachment, thanks.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src="https://www.millisecond.com/forums/uploads/images/ca479b36-5d75-47a0-b7fc-24ed.jpg" alt="https://www.millisecond.com/forums/uploads/images/ca479b36-5d75-47a0-b7fc-24ed.jpg" /&gt;</description><pubDate>Fri, 14 Aug 2015 12:00:13 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16976.aspx</link><description>Thank you very much for the kind words and I wish you much success with your research project!&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 12:00:13 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16972.aspx</link><description>Thanks Dave, you help me resolved all the (stupid) problems. I love you more than i can say.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 11:24:12 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16971.aspx</link><description>&amp;gt; For example, if there were 3 loss cards in a round, the points feedback was correct when I pressed 1 or 2 times&lt;br/&gt;&amp;gt; but 0 scoring appeared&amp;nbsp; after I press 3times and stop pressing (do nothing and wait for timeout). &lt;br/&gt;&lt;br/&gt;This is *precisely* what I pointed out in my previous reply. Again, look at:&lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response!="8" &amp;amp;&amp;amp; values.cardtype==3)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]			    							    &lt;br/&gt;&lt;br/&gt;You've opened 3 "safe cards" and are now in the 4th instance of &amp;lt;trial pickcard&amp;gt;. Only 3 loss cards remain, i.e. values.cardtype at this point *is* 3 as in&lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response!="8" &amp;amp;&amp;amp; &lt;strong&gt;values.cardtype==3&lt;/strong&gt;)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]			    							    &lt;br/&gt;&lt;br/&gt;You do *not* respond in this trial. Hence, trial.pickcard.response *is* 0. Obviously, 0 is *not* equal to 8 as in&lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(&lt;strong&gt;trial.pickcard.response!="8"&lt;/strong&gt; &amp;amp;&amp;amp; values.cardtype==3)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]			    							    &lt;br/&gt;&lt;br/&gt;It should now be obvious that the entire condition &lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(&lt;strong&gt;trial.pickcard.response!="8" &amp;amp;&amp;amp; values.cardtype==3&lt;/strong&gt;)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]			    							    &lt;br/&gt;&lt;br/&gt;is met and the score is zeroed as instructed. In your particular case, if you *don't* want this to happen, change the logic to&lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(&lt;strong&gt;trial.pickcard.response=="7" &amp;amp;&amp;amp; values.cardtype==3&lt;/strong&gt;)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]			    							    &lt;br/&gt;&lt;br/&gt;Work through the rest of the logic accordingly.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 10:51:04 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16970.aspx</link><description>Could you help me modify it, because I have to implement it a few hours latter. Thank you so much.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 10:35:26 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16969.aspx</link><description>It is weired that it only happened when I turn over the last safe card. For example, if there were 3 loss cards in a round, the points feedback was correct when I pressed 1 or 2 times, but 0 scoring appeared&amp;nbsp; after I press 3times and stop pressing (do nothing and wait for timeout). &lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 10:33:20 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16968.aspx</link><description>Look at&lt;br/&gt;&lt;br/&gt;&amp;lt;trial pickcard&amp;gt;&lt;br/&gt;...&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response!="8" &amp;amp;&amp;amp; values.cardtype==3)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response=="7" &amp;amp;&amp;amp; values.cardtype==2)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score+=values.gainamount]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;That's where the score is manipulated depending on *response* and the type of scheduled *card* (loss or gain).&lt;br/&gt;&lt;br/&gt;"!=" is a logical NOT. Thus,&lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response!="8" &amp;amp;&amp;amp; values.cardtype==3)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.score-=values.score]&lt;br/&gt;&lt;br/&gt;means "if the response is not a press on the key with scan code 8 AND the scheduled card is a loss card" subtract stuff. Now, which responses in your case are "not 8"? It's 7 and 0 (no response).&lt;br/&gt;&lt;br/&gt;Similarly, there are other pieces of logic where you *don't* take into account the "no response" case:&lt;br/&gt;&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response!="8" &amp;amp;&amp;amp; values.cardtype==3)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.openlosscards=1]&lt;br/&gt;/ ontrialend = [if(trial.pickcard.response!="7" &amp;amp;&amp;amp; values.cardtype==3)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.openlosscards=1]&lt;br/&gt;&lt;br/&gt;Work through that logic, think through what exactly happens in each case and then modify it according to your needs, i.e., take the "no response" case into account.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 10:04:51 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16967.aspx</link><description>I resulved part of problems, however, I still can't figure out how to deal with the problem of 0 scoring. &lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 09:38:16 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16966.aspx</link><description>Re. the scoring: Work through the code that is responsible for that and double-check it. You need to decide what you want to do when no response occurs and adjust accordingly.&lt;br/&gt;&lt;br/&gt;Re. the timeout: Again, just as with the BARTY, you ought to instruct the turnover trial to last for whatever remains of the 10s timeout. As with the BARTY, you do that via the /trialduration.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 07:55:41 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16965.aspx</link><description>It appears to happening only when i press pick card button and then do nothing resulted in trial terminated automatically. Moreover, I alos found that when I press "stop" button the trial terminated immediately before 10s' timeout. &lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 06:33:19 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16964.aspx</link><description>There is another problem. I found a discrepancy between two scores in CCT_hot. Specifically, sometime the score in pick card stage was consistent with that in feedback stage (e.g. 88 points in pick card stage and reveal the same score in latter feedback stage). However, sometimes these two scores were not identical (e.g. i got 100 points in pickcard stage but it revealed 0 points in latter stage). &lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 06:22:13 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16963.aspx</link><description>Thanks :)&lt;br/&gt;&lt;br/&gt;You just made my day!&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 05:57:41 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16962.aspx</link><description>Thanks Dave,&amp;nbsp; I love you.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 05:53:27 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16961.aspx</link><description>Just as with the BARTY, you ought to set the timeout variable to 10 seconds at the beginning of each round.&lt;br/&gt;&lt;br/&gt;&amp;lt;trial getcondition&amp;gt;&lt;br/&gt;/ ontrialbegin = [values.pickcardtimeout=10000; ]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 05:49:22 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16960.aspx</link><description>I revised the script as you mentioned in former post (please see the attachment). However, it only works on the first hot round, the rest of hot trials automatically and immediately terminated before i pressing the button.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 05:32:09 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16959.aspx</link><description>I add / branch = [if (trial.pickcard.sumlatency==trial.pickcard.timeout) trial.turnover] in &amp;lt;trial pickcard&amp;gt;, but it was not what I intended.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 05:00:26 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16958.aspx</link><description>You do it in the same way as with the BARTY, which we discussed in this thread.&lt;br/&gt;</description><pubDate>Fri, 14 Aug 2015 04:59:16 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16957.aspx</link><description>&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;o:OfficeDocumentSettings&gt;  &lt;o:AllowPNG/&gt; &lt;/o:OfficeDocumentSettings&gt;&lt;/xml&gt;&lt;![endif]--&gt;&lt;p class="MsoNormal" style="mso-pagination:widow-orphan"&gt;&lt;span style="mso-bidi-font-size:12.0pt;font-family:&amp;quot;新細明體&amp;quot;,&amp;quot;serif&amp;quot;;mso-bidi-font-family:新細明體;mso-font-kerning:0pt" lang="EN-US"&gt;I finally found that the trial duration of CCT_hotwithin a round was more than 10s after I pressing more than once. Actually, i want one round terminate exactlyat 10s whatever how many times participants pressedwithin per round (e.g. In round 1, participant made two presses, first press was at 3s, secondat 6s, and i want it to terminate at 10s rather than 16s). Present syntax leads10s timeout to recalculate after each press within one round (please seeattchment). Could you help me resolve it? Thank you.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:WordDocument&gt;  &lt;w:View&gt;Normal&lt;/w:View&gt;  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;  &lt;w:TrackMoves/&gt;  &lt;w:TrackFormatting/&gt;  &lt;w:PunctuationKerning/&gt;  &lt;w:DisplayHorizontalDrawingGridEvery&gt;0&lt;/w:DisplayHorizontalDrawingGridEvery&gt;  &lt;w:DisplayVerticalDrawingGridEvery&gt;2&lt;/w:DisplayVerticalDrawingGridEvery&gt;  &lt;w:ValidateAgainstSchemas/&gt;  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;  &lt;w:DoNotPromoteQF/&gt;  &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;  &lt;w:LidThemeAsian&gt;ZH-TW&lt;/w:LidThemeAsian&gt;  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;  &lt;w:Compatibility&gt;   &lt;w:SpaceForUL/&gt;   &lt;w:BalanceSingleByteDoubleByteWidth/&gt;   &lt;w:DoNotLeaveBackslashAlone/&gt;   &lt;w:ULTrailSpace/&gt;   &lt;w:DoNotExpandShiftReturn/&gt;   &lt;w:AdjustLineHeightInTable/&gt;   &lt;w:BreakWrappedTables/&gt;   &lt;w:SnapToGridInCell/&gt;   &lt;w:WrapTextWithPunct/&gt;   &lt;w:UseAsianBreakRules/&gt;   &lt;w:DontGrowAutofit/&gt;   &lt;w:SplitPgBreakAndParaMark/&gt;   &lt;w:EnableOpenTypeKerning/&gt;   &lt;w:DontFlipMirrorIndents/&gt;   &lt;w:OverrideTableStyleHps/&gt;   &lt;w:UseFELayout/&gt;  &lt;/w:Compatibility&gt;  &lt;m:mathPr&gt;   &lt;m:mathFont m:val="Cambria Math"/&gt;   &lt;m:brkBin m:val="before"/&gt;   &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;   &lt;m:smallFrac m:val="off"/&gt;   &lt;m:dispDef/&gt;   &lt;m:lMargin m:val="0"/&gt;   &lt;m:rMargin m:val="0"/&gt;   &lt;m:defJc m:val="centerGroup"/&gt;   &lt;m:wrapIndent m:val="1440"/&gt;   &lt;m:intLim m:val="subSup"/&gt;   &lt;m:naryLim m:val="undOvr"/&gt;  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"  DefSemiHidden="true" DefQFormat="false" DefPriority="99"  LatentStyleCount="267"&gt;  &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;  &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;  &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;  &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;  &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;  &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;  &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;  &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;  &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;  &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"   UnhideWhenUsed="false" Name="Table Grid"/&gt;  &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;  &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;  &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;  &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;  &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;  &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"   UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"   UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"   UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;  &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;  &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;  &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;  &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;  &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;  &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;  &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt; &lt;/w:LatentStyles&gt;&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;&lt;style&gt; /* Style Definitions */ table.MsoNormalTable	{mso-style-name:表格內文;	mso-tstyle-rowband-size:0;	mso-tstyle-colband-size:0;	mso-style-noshow:yes;	mso-style-priority:99;	mso-style-parent:"";	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;	mso-para-margin:0cm;	mso-para-margin-bottom:.0001pt;	mso-pagination:widow-orphan;	font-size:12.0pt;	mso-bidi-font-size:11.0pt;	font-family:"Calibri","sans-serif";	mso-ascii-font-family:Calibri;	mso-ascii-theme-font:minor-latin;	mso-hansi-font-family:Calibri;	mso-hansi-theme-font:minor-latin;	mso-font-kerning:1.0pt;}&lt;/style&gt;&lt;![endif]--&gt;&lt;div style="position: absolute; top: -1999px; left: -1988px;" id="stcpDiv"&gt;I finally found that the trial duration of CCT_hot within a round was more than 10s. Actually, i want one round terminate exactly at 10s whatever how many times participants press the button within that period (e.g. In round 1, participant made two presses, first press was at 3s, second at 6s, and i want it to terminate at 10s rather than 16s). Present syntax leads 10s timeout to recalculate after each press within one round (please see attchment). Could you help me to resolve it? Thank you. - See more at: &lt;a href="http://www.millisecond.com/forums/Topic16800-7.aspx#sthash.zTWGB0iu.dpuf"&gt;http://www.millisecond.com/forums/Topic16800-7.aspx#sthash.zTWGB0iu.dpuf&lt;/a&gt;&lt;/div&gt;</description><pubDate>Thu, 13 Aug 2015 23:09:42 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16956.aspx</link><description>I finally found that the trial duration of CCT_hot within a round was more than 10s. Actually, i want one round terminate exactly at 10s whatever how many times participants press the button within that period (e.g. In round 1, participant made two presses, first press was at 3s, second at 6s, and i want it to terminate at 10s rather than 16s). Present syntax leads 10s timeout to recalculate after each press within one round (please see attchment). Could you help me to resolve it? Thank you. &lt;br/&gt;</description><pubDate>Thu, 13 Aug 2015 20:47:24 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16953.aspx</link><description>&amp;gt; I know it works by setting trialduration to 9s&lt;br/&gt;&lt;br/&gt;Then please use /trialduration. That's exactly the scenario it is intended for.&lt;br/&gt;&lt;br/&gt;&amp;gt; but it will make participants fail to confirm their response while they press the corresponding keys&lt;br/&gt;&lt;br/&gt;I'm not sure what that's supposed to mean. It literally makes no difference. With /trialduration specified, the trial goes into a posttrialpause for the remainder of the specified duration.&lt;br/&gt;&lt;br/&gt;&amp;gt; How can it let it terminate at 9s whatever when participants make their responses within that trial?&lt;br/&gt;&lt;br/&gt;Use /trialduration.&lt;br/&gt;</description><pubDate>Thu, 13 Aug 2015 03:59:44 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16951.aspx</link><description>Hi, Dave,&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I really confused about the time control. I set a trial's timeout=9000 and / posttrialpause = trial.5losseva_self.timeout-trial.5losseva_self.elapsedtime (see the attachment). If the elapsedtime is 4s, the trial should pause 5s to the next trial. But it terminate 9s latter after my response, e.g. i response at 4s, it terminate at 13s. I know it works by setting trialduration to 9s, but it will make participants fail to confirm their response while they press the corresponding keys. How can it let it terminate at 9s whatever when participants make their responses within that trial?&lt;br/&gt;</description><pubDate>Wed, 12 Aug 2015 21:10:23 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16941.aspx</link><description>Thanks for your help.</description><pubDate>Tue, 11 Aug 2015 09:12:17 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16939.aspx</link><description>&amp;gt; It may be the last two questions (i hope so). First one, revised BARTY.iqx works well, however, it seems exceeding 2s than &lt;br/&gt;&amp;gt; expect. Specifically, I expected the totoal time is 3mins 16s (1s fixation+10s instruction+15s*12 balloon+5s feedback). &lt;br/&gt;&lt;br/&gt;Well, there's other stuff going on that you cannot control. Sometimes Inquisit will have to wait for the start of a display frame in order to start drawing stuff to the screen, etc. This can add up over the course of the entire task and there's nothing you can do about it.&lt;br/&gt;&lt;br/&gt;As for the Cued Go/-No Go: Your math is wrong.&lt;br/&gt;&lt;br/&gt;&amp;lt;trial cue&amp;gt; lasts 1300 ms plus a variable soa (see list.soa). &amp;lt;trial iti&amp;gt; lasts 700 ms as per values.iti. That alone gives you 2000ms + soa. If the end result is supposed to be approx. 4000ms for each (cue-target-iti) tuple of trials, the /trialduration of &amp;lt;trial target&amp;gt; should be set to 2000 ms - soa. I have no idea where you get the 3300 ms /posttrialpause figure from. It also seems that there's some confusion left regarding the various timing components of a &amp;lt;trial&amp;gt; and how they interrelate. I strongly recommend reading the "How to Control Trial Duration and Inter-Trial Intervals" topic in the documentation, which explains all of that.&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 08:01:19 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16938.aspx</link><description>It may be the last two questions (i hope so). First one, revised BARTY.iqx works well, however, it seems exceeding 2s than expect. Specifically, I expected the totoal time is 3mins 16s (1s fixation+10s instruction+15s*12 balloon+5s feedback). &lt;br/&gt;&lt;br/&gt;The second question is about cued go no go task (see attachment). I want that each trial was exact 4s (from &amp;lt;trial cue&amp;gt; to &amp;lt;trial target&amp;gt; to &amp;lt;trial iti&amp;gt;), so i add "/ posttrialpause = 3300-trial.target.elapsedtime-trial.cue.trialduration" in &amp;lt;trial.target&amp;gt;. However, it resulted in 8s more than expect, and the colored rectangle didn't disapear immediately after my response (in fact, I want it disapeared immediately after my response then wait for a while until next fixation appeared, just as default setting). Could you help me figure out how to resolve it? Thank you so much.&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 07:34:08 GMT</pubDate><dc:creator>minin72704</dc:creator></item><item><title>RE: adopted Columbia Card Task</title><link>https://forums.millisecond.com/Topic16937.aspx</link><description>Thanks for your help. It looks great.&lt;br/&gt;</description><pubDate>Tue, 11 Aug 2015 06:52:08 GMT</pubDate><dc:creator>minin72704</dc:creator></item></channel></rss>