﻿<?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  » randomising trials/ how to create multiple choice options</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 12:57:21 GMT</lastBuildDate><ttl>20</ttl><item><title>randomising trials/ how to create multiple choice options</title><link>https://forums.millisecond.com/Topic18862.aspx</link><description>Hello Inquisiters,&amp;nbsp;&lt;br/&gt;I am trying to create a set of 10 trials in which the participant will hear sounds (which will be a word) and they will then be able to choose the word they heard from 3 words presented on the screen.&lt;br/&gt;&lt;span style="font-size: 13.3333px;"&gt;&lt;br/&gt;So for example, the word they will hear is 'cat' and then they can pick from 'cat' 'mat' 'flat'- and then they will receive feedback on whether their answer was correct or not.&lt;br/&gt;&lt;/span&gt;&lt;br/&gt;I would like the 10 trials to be presented in a random order.&lt;br/&gt;I would also like the multiple choice options to be presented in a random order.&lt;br/&gt;&lt;br/&gt;There is probably a simple way to do this, but I really CAN NOT figure it out.&lt;br/&gt;I would appreciate any advice at all!&amp;nbsp;&lt;br/&gt;Thank you!</description><pubDate>Mon, 11 Apr 2016 08:52:13 GMT</pubDate><dc:creator>KS</dc:creator></item><item><title>RE: randomising trials/ how to create multiple choice options</title><link>https://forums.millisecond.com/Topic18872.aspx</link><description>&amp;gt; / vposition = list.randomvpos.nextvalue&lt;br/&gt;&lt;br/&gt;The element's *vertical* ("v") position is drawn from the indicated list. There are three objects on screen and three different vertical positions in the list. I.e., the three objects vertical positions will vary randomly from trial to trial.&lt;br/&gt;&lt;br/&gt;&amp;gt; / select = sound.word.currentindex&lt;br/&gt;&lt;br/&gt;Serves to select the items *corresponding* to the displayed sound item for the correct option and distractor elements.&lt;br/&gt;&lt;br/&gt;See the "How to present stimulus pairs" topic in the documentation for further details on that.&lt;br/&gt;</description><pubDate>Mon, 11 Apr 2016 08:52:13 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: randomising trials/ how to create multiple choice options</title><link>https://forums.millisecond.com/Topic18870.aspx</link><description>Thank you Dave!&lt;br/&gt;That works brilliantly!&lt;br/&gt;I'm trying to get my head around Inquisit so that I am able to use it and understand it if I need to use this kind of syntax again.&lt;br/&gt;Would you mind explaining these parts to me...&lt;br/&gt;&lt;br/&gt;/ vposition = list.randomvpos.nextvalue&lt;br/&gt;&lt;br/&gt;/ select = sound.word.currentindex&lt;br/&gt;&lt;br/&gt;Thank you for your time! SO helpful!&lt;br/&gt;&lt;br/&gt;K.</description><pubDate>Mon, 11 Apr 2016 07:59:51 GMT</pubDate><dc:creator>KS</dc:creator></item><item><title>RE: randomising trials/ how to create multiple choice options</title><link>https://forums.millisecond.com/Topic18865.aspx</link><description>You do something like this:&lt;br/&gt;&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-2 = word]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial word&amp;gt;&lt;br/&gt;/ stimulusframes = [1=word]&lt;br/&gt;/ validresponse = (0)&lt;br/&gt;/ trialduration = 10&lt;br/&gt;/ branch = [trial.response]&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;sound word&amp;gt;&lt;br/&gt;/ items = ("cat.wav", "dog.wav")&lt;br/&gt;/ playthrough = true&lt;br/&gt;&amp;lt;/sound&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial response&amp;gt;&lt;br/&gt;/ stimulusframes = [1=correctoption, distractor1, distractor2]&lt;br/&gt;/ inputdevice = mouse&lt;br/&gt;/ validresponse = (correctoption, distractor1, distractor2)&lt;br/&gt;/ correctresponse = (correctoption)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text correctoption&amp;gt;&lt;br/&gt;/ items = ("cat", "dog")&lt;br/&gt;/ select = sound.word.currentindex&lt;br/&gt;/ hposition = 50%&lt;br/&gt;/ vposition = list.randomvpos.nextvalue&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text distractor1&amp;gt;&lt;br/&gt;/ items = ("mat", "bog")&lt;br/&gt;/ select = sound.word.currentindex&lt;br/&gt;/ hposition = 50%&lt;br/&gt;/ vposition = list.randomvpos.nextvalue&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text distractor2&amp;gt;&lt;br/&gt;/ items = ("flat", "fog")&lt;br/&gt;/ select = sound.word.currentindex&lt;br/&gt;/ hposition = 50%&lt;br/&gt;/ vposition = list.randomvpos.nextvalue&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;list randomvpos&amp;gt;&lt;br/&gt;/ items = (40%, 50%, 60%)&lt;br/&gt;/ selectionrate = always&lt;br/&gt;&amp;lt;/list&amp;gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Mon, 11 Apr 2016 05:56:41 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>