﻿<?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  » How do I get my items to present in the correct order?</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Tue, 08 Sep 2026 21:45:33 GMT</lastBuildDate><ttl>20</ttl><item><title>How do I get my items to present in the correct order?</title><link>https://forums.millisecond.com/Topic19201.aspx</link><description>Hi All,&lt;br/&gt;I am a complete novice to Inquisit and am completely lost in script building. I have had success in getting my scripts to run, but when I run them the questions are out of order. For several of my scales this doesn't matter, but I am using some surveys that have a question and follow-up questions. Meaning, question 1 and 2 must go in that order and so on. Because my questions are out of order my assessment makes no sense. How do I fix this? Is this fixed in the sequence below?&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&amp;lt;text question&amp;gt;&lt;br/&gt;/ items = question&lt;br/&gt;/ select = noreplace&lt;br/&gt;/ position = (50%, 35%)&lt;br/&gt;/ fontstyle = ("Arial", 18pt, false, false, false, false, 5)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;Thanks for any and all help!&amp;nbsp;</description><pubDate>Wed, 08 Jun 2016 16:12:26 GMT</pubDate><dc:creator>MJenn</dc:creator></item><item><title>RE: How do I get my items to present in the correct order?</title><link>https://forums.millisecond.com/Topic19211.aspx</link><description>Ok, that makes perfect sense. Thank you so much!&amp;nbsp;</description><pubDate>Wed, 08 Jun 2016 16:12:26 GMT</pubDate><dc:creator>MJenn</dc:creator></item><item><title>RE: How do I get my items to present in the correct order?</title><link>https://forums.millisecond.com/Topic19202.aspx</link><description>The way items are sampled is determined by the setting of the /select attribute.&lt;br/&gt;&lt;br/&gt;&amp;lt;text question&amp;gt;&lt;br/&gt;/ items = question&lt;br/&gt;&lt;strong&gt;/ select = noreplace&lt;/strong&gt;&lt;br/&gt;/ position = (50%, 35%)&lt;br/&gt;/ fontstyle = ("Arial", 18pt, false, false, false, false, 5)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;noreplace means you are sampling items *randomly without replacement*.&lt;br/&gt;&lt;br/&gt;If you want items to be presented in a specific order, you should use &lt;br/&gt;&lt;br/&gt;/ select = sequence&lt;br/&gt;&lt;br/&gt;&amp;nbsp;instead.&lt;br/&gt;&lt;br/&gt;To illustrate, consider the difference between&lt;br/&gt;&lt;br/&gt;#1:&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-4 = mytrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ stimulusframes = [1=mytext]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text mytext&amp;gt;&lt;br/&gt;/ items = myitems&lt;br/&gt;&lt;strong&gt;/ select = noreplace&lt;/strong&gt;&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item myitems&amp;gt;&lt;br/&gt;/ 1 = "A"&lt;br/&gt;/ 2 = "B"&lt;br/&gt;/ 3 = "C"&lt;br/&gt;/ 4 = "D"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;which will display the 4 items in random order, vs.&lt;br/&gt;&lt;br/&gt;#2:&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-4 = mytrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ stimulusframes = [1=mytext]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text mytext&amp;gt;&lt;br/&gt;/ items = myitems&lt;br/&gt;&lt;strong&gt;/ select = sequence&lt;/strong&gt;&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item myitems&amp;gt;&lt;br/&gt;/ 1 = "A"&lt;br/&gt;/ 2 = "B"&lt;br/&gt;/ 3 = "C"&lt;br/&gt;/ 4 = "D"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;which will present them in the given order A, B, C, and D.&lt;br/&gt;</description><pubDate>Mon, 06 Jun 2016 20:01:45 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>