﻿<?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  » Inquisit 4 to Inquisit 3</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 28 May 2026 17:19:52 GMT</lastBuildDate><ttl>20</ttl><item><title>Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19007.aspx</link><description>So I wrote the script for my experiment in Inquisit 4 but for the purpose of the lab it must also be compatible with Inqusist 3. After opening my experiment in Inquisit 3, I get a number of errors regarding the pictures I have in the script.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;It has trouble finding them, however, it works fine in Inqusit 4. All the pictures are in .jpg form and are located in the same file as the experiment.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Here is an example of some script:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture risk_slides&amp;gt;&lt;br/&gt;/items = ("1#5#13.jpg","1#8#13.jpg","1#20#13.jpg","1#50#13.jpg","1#125#13.jpg",&lt;br/&gt;"1#5#25.jpg","1#8#25.jpg","1#20#25.jpg","1#50#25.jpg","1#125#25.jpg",&lt;br/&gt;"1#5#38.jpg","1#8#38.jpg","1#20#38.jpg","1#50#38.jpg","1#125#38.jpg",&lt;br/&gt;"1#5#50.jpg","1#8#50.jpg","1#20#50.jpg","1#50#50.jpg","1#125#50.jpg",&lt;br/&gt;"1#5#75.jpg","1#8#75.jpg","1#20#75.jpg","1#50#75.jpg","1#125#75.jpg",)&lt;br/&gt;/ size = (82%, 82%)&lt;br/&gt;/ select = list.slidevalues.currentindex&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;There are a few of these item lists for different pictures. There are also errors involving the list.slidevalues.currentindex, however, I think that is just an issue with the program not being able to find the pictures.&lt;br/&gt;&lt;br/&gt;Any help would be much appreciated.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Thanks&lt;br/&gt;&lt;br/&gt;Nick</description><pubDate>Fri, 13 May 2016 12:43:06 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19096.aspx</link><description>&amp;gt; Does something involving the win.value need to go into the storedwinnings item? &lt;br/&gt;&lt;br/&gt;I cannot answer this question but you should be able to. You wrote the original Inquisit 4 code that used those &amp;lt;item&amp;gt; elements and that should tell you where they were used and what for.&lt;br/&gt;&lt;br/&gt;All I can say is that you have a &amp;lt;text&amp;gt; element &lt;br/&gt;&lt;br/&gt;&amp;lt;text payout&amp;gt;&lt;br/&gt;&lt;strong&gt;/ items = storedwinnings&lt;/strong&gt;&lt;br/&gt;&lt;strong&gt;/ select = current(endslide)&lt;/strong&gt;&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item storedwinnings&amp;gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;that references &amp;lt;item storedwinnings&amp;gt; and that the selection in the &amp;lt;text&amp;gt; element depends on the selection in "endslide". If you don't ever add any items to &amp;lt;item storedwinnings&amp;gt;, it obviously cannot display anything.&lt;br/&gt;</description><pubDate>Fri, 13 May 2016 12:43:06 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19093.aspx</link><description>Ok, I changed the select so that it is it is the text payout that is selecting the endslide instead of the opposite way. The trial number is coming up using this &amp;lt;%text.payout.currentitemnumber%&amp;gt;.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;The only thing still not showing up is storedwinnings. After each trial is changes the win value to either 0, 5, or a win amount depending on the outcome of the lottery.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I don't have anything for storedwinnings in the trial script.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial fixedtrial&amp;gt;&lt;br/&gt;/ ontrialbegin = [values.probamount=counter.slidevalues.selectedvalue; values.prob=counter.slideprob.selectedvalue; values.win=0; ]&lt;br/&gt;/ ontrialbegin = [values.randomnumber = rand(0,100); ]&lt;br/&gt;/ ontrialbegin = [picture.risk_slides]&lt;br/&gt;/ ontrialend = [if (trial.fixedtrial.response=="3") {values.win=values.fixedamount; }; ]&lt;br/&gt;/ ontrialend = [if (trial.fixedtrial.response=="1" &amp;amp;&amp;amp; values.prob &amp;gt;= values.randomnumber) {values.win=values.probamount; }; ]&lt;br/&gt;/ ontrialend = [if (trial.fixedtrial.response=="1" &amp;amp;&amp;amp; values.prob &amp;lt; values.randomnumber) {values.win=0; }; ]&lt;br/&gt;/ ontrialend = [item.endslide.item = picture.risk_slides.currentitem]&lt;br/&gt;/ stimulusframes = [1=3, 1, risk_slides]&lt;br/&gt;/ inputdevice = mouse&lt;br/&gt;/ response = timeout(10000)&lt;br/&gt;/ validresponse = (3, 1)&lt;br/&gt;/ posttrialpause = 500&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;and was wondering if it had to be in there or if the value gets stored with the item.endslide&lt;br/&gt;&lt;br/&gt;&amp;lt;text payout&amp;gt;&lt;br/&gt;/ items = storedwinnings&lt;br/&gt;/ select = current(endslide)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text trialmsg&amp;gt;&lt;br/&gt;/ items = ("which is the amount you won in trial #&amp;lt;%text.payout.currentitemnumber%&amp;gt;.")&lt;br/&gt;/ position = (50%, 60%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item storedwinnings&amp;gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;Does something involving the win.value need to go into the storedwinnings item?&amp;nbsp;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Fri, 13 May 2016 12:04:20 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19082.aspx</link><description>The code is too incomplete to say anything specific. Note that the selection in your &amp;lt;picture&amp;gt; element is set to depend on the selection in some other element:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture endslide&amp;gt;&lt;br/&gt;/ items = endslide&lt;br/&gt;&lt;strong&gt;/ select = current(payout)&lt;/strong&gt;&lt;br/&gt;/ size = (50%,50%)&lt;br/&gt;/ position = (50%,55%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;For this to make sense, the selection in the "payout" element has to happen *before* you ever try to display the &amp;lt;picture&amp;gt;. That would be a good place to start looking for your error.&lt;br/&gt;</description><pubDate>Fri, 13 May 2016 09:27:07 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19079.aspx</link><description>Thank you, the experiment is running however, it is appending only the first item and not a random trial. And on the payout page, it is saying that trial number picked at random is trial 1 and it does not show the payout. I'm not sure if its a problem with the script in the trials above or an error with the trials for the payout page that i've posted here.&lt;br/&gt;&lt;br/&gt;&amp;lt;trial chosenslide&amp;gt;&lt;br/&gt;/stimulusframes = [1=endslide]&lt;br/&gt;/inputdevice = keyboard&lt;br/&gt;/validresponse = ("q")&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture endslide&amp;gt;&lt;br/&gt;/ items = endslide&lt;br/&gt;/ select = current(payout)&lt;br/&gt;/ size = (50%,50%)&lt;br/&gt;/ position = (50%,55%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial payouttrial&amp;gt;&lt;br/&gt;/ stimulusframes = [1=payoutmsg, payout, trialmsg]&lt;br/&gt;/inputdevice = keyboard&lt;br/&gt;/ validresponse = ("q")&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text payoutmsg&amp;gt;&lt;br/&gt;/ items = ("Your payout is")&lt;br/&gt;/ position = (50%, 40%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text payout&amp;gt;&lt;br/&gt;/ items = storedwinnings&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text trialmsg&amp;gt;&lt;br/&gt;/ items = ("which is the amount you won in trial #&amp;lt;%text.payout.currentitemnumber%&amp;gt;.")&lt;br/&gt;/ position = (50%, 60%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item storedwinnings&amp;gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item endslide&amp;gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Fri, 13 May 2016 08:23:28 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19052.aspx</link><description>Inquisit 3 syntax does not have object- or member-functions.&lt;br/&gt;&lt;br/&gt;The equivalent to &lt;br/&gt;&lt;br/&gt;&amp;lt;trial fixedtrial&amp;gt;&lt;br/&gt;.........&lt;br/&gt;&lt;strong&gt;/ ontrialend = [item.endslide.appenditem(picture.risk_slides.currentitem)]&lt;/strong&gt;&lt;br/&gt;........&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;would simply be&lt;br/&gt;&lt;br/&gt;&amp;lt;trial fixedtrial&amp;gt;&lt;br/&gt;.........&lt;br/&gt;&lt;strong&gt;/ ontrialend = [item.endslide.item = picture.risk_slides.currentitem]&lt;/strong&gt;&lt;br/&gt;........&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Tue, 10 May 2016 16:50:29 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19049.aspx</link><description>Thank you! That was very frustrating but I was able to export the pictures into a jpg format and the program now runs on Inquisit 3.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;The final issue I'm having with the transition is involving appending an item. I couldn't find anything involving the language for Inquisit 3 and wasn't sure about how to go about handling it.&lt;br/&gt;&lt;br/&gt;what I have right now looks like this&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial fixedtrial&amp;gt;&lt;br/&gt;.........&lt;br/&gt;.........&lt;br/&gt;/ ontrialend = [item.endslide.appenditem(picture.risk_slides.currentitem)]&lt;br/&gt;........&lt;br/&gt;&amp;lt;/trial fixedtrial&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial payouttrial&amp;gt;&lt;br/&gt;/ stimulusframes = [1=payoutmsg, payout, trialmsg]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block payoutblock&amp;gt;&lt;br/&gt;/ trials = [1=chosenslide; 2=payouttrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text payoutmsg&amp;gt;&lt;br/&gt;/ items = ("Your payout is")&lt;br/&gt;/ position = (50%, 40%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text payout&amp;gt;&lt;br/&gt;/ items = storedwinnings&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text trialmsg&amp;gt;&lt;br/&gt;/ items = ("which is the amount you won in trial #&amp;lt;%text.payout.currentitemnumber%&amp;gt;.&lt;br/&gt;")&lt;br/&gt;/ position = (50%, 60%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item storedwinnings&amp;gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial chosenslide&amp;gt;&lt;br/&gt;/stimulusframes = [1=endslide,chosentext, spacebar]&lt;br/&gt;/inputdevice = mouse&lt;br/&gt;/validresponse = (spacebar)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text chosentext&amp;gt;&lt;br/&gt;/ items = ("This trial was picked at random. Continue to see what you won!")&lt;br/&gt;/fontstyle = ("Arial", 4%)&lt;br/&gt;/ position = (50%, 20%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture endslide&amp;gt;&lt;br/&gt;/ items = endslide&lt;br/&gt;/ select = current(payout)&lt;br/&gt;/ size = (50%,50%)&lt;br/&gt;/ position = (50%,55%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item endslide&amp;gt;&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;The purpose of this is to randomly select a single trial from the experiment and recall the picture of the trial, their response, and how much they won.&amp;nbsp;&lt;br/&gt;If it is easier, I would not be opposed to simply recalling a random trial and having them complete the single trial again to determine what they have won.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Tue, 10 May 2016 15:17:56 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19041.aspx</link><description>&amp;gt;  I have moved them to a PC and &lt;strong&gt;changed the extension (.png to .jpg)&lt;br/&gt;&lt;br/&gt;There's your problem. Changing a file's *extension* does not change the file's *format*. A PNG with a JPG extension is still a PNG, just like a Word DOC with a PDF extension is still a Word Document which no PDF reader will open: Changing the extension does not magically transform the file into something else.&lt;br/&gt;&lt;br/&gt;Inquisit 3 does not support PNGs. What you need to do is open the PNGs in your preferred image editor and *convert* them to JPG, usually via FIle -&amp;gt; Save As...&lt;br/&gt;&lt;/strong&gt;</description><pubDate>Mon, 09 May 2016 11:32:25 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19040.aspx</link><description>I'm still having an issue loading these pictures.&lt;br/&gt;&lt;br/&gt;I have made sure to save it as a .exp, and I have tried testing it with other pictures and those are working fine, its only the picture files I need that are not working. Originally these files were used on a Mac for Inqusisit 4. I have moved them to a PC and changed the extension (.png to .jpg). It seems like there is something wrong with the picture properties. I have tried many different options but I can't seem to get these photos to load.&amp;nbsp;</description><pubDate>Mon, 09 May 2016 10:06:49 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19033.aspx</link><description>&amp;gt; /items: Unable to load the picture 'H:\Test Expmnt\&lt;strong&gt;1#5#13.jpg&lt;/strong&gt;'.&lt;br/&gt;&lt;br/&gt;The file name referenced in the above error message is not anywhere among those referenced in the &amp;lt;picture&amp;gt; element &amp;amp; associated &amp;lt;item&amp;gt; element, so my assumption would be that error pertains to a different &amp;lt;picture&amp;gt; element in your script. It may also be that you are running into some kind of encoding issue (Inquisit 4 is a Unicode application and its files are encoded in UTF-8; Inquisit 3 is *not* a Unicode application, and it expects files to be encoded according to your system's codepage). Before transitioning to Inquisit 3, make sure to save your script in the legacy *.exp format via File -&amp;gt; Save As... in Inquisit 4.&lt;br/&gt;&lt;br/&gt;Beyond that, no, there is no difference between Inquisit 3 and 4 in terms of loading and handling images.&lt;br/&gt;</description><pubDate>Thu, 05 May 2016 09:56:22 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19032.aspx</link><description>Thank you. These changes have been working so far (I'm going through it slowly section by section), however, one problem keeps on occurring. The program is not finding my pictures.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;/items: Unable to load the picture 'H:\Test Expmnt\1#5#13.jpg'. Verify that the file exists and is of a supported format.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;This is the error I keep on getting. The pictures are in jpg format and are located in the same file as the .exp file.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I've haven't been able to find anything about errors loading pictures. Is there a specific way to organize pictures in the script for Inquisit 3 vs. Inquisit 4?&lt;br/&gt;&lt;br/&gt;Should the pictures have their own item script and then have the picture script select them like this:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture ptask1picture&amp;gt;&lt;br/&gt;/ items = ptask1items&lt;br/&gt;/ select = sequence(1,2,3,4)&lt;br/&gt;/size = (792px, 612px)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item ptask1items&amp;gt;&lt;br/&gt;/1 = "Breakfast.jpg"&lt;br/&gt;/2 = "Rollercoaster.jpg"&lt;br/&gt;/3 = "WrongWay.jpg"&lt;br/&gt;/4 = "Detergent.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;or is it fine the way I had it shown above?&lt;br/&gt;&lt;br/&gt;Thanks as always!&lt;br/&gt;&lt;br/&gt;</description><pubDate>Thu, 05 May 2016 09:41:41 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19013.aspx</link><description>&amp;lt;counter&amp;gt; elements are covered in the Inquisit 4 language reference in the Inquisit 4 documentation; a better place to look is the Inquisit 3 documentation. I would in addition recommend (re-)writing / modifying your script using Inquisit 3 if that's the version you are ultimately going to use / collect data with. In addition, hundreds of examples using &amp;lt;counter&amp;gt; elements are available in the Inquisit 3 section of this forum: &lt;a href="https://www.millisecond.com/forums/Forum12.aspx"&gt;https://www.millisecond.com/forums/Forum12.aspx&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The equivalent to&lt;br/&gt;&lt;br/&gt;&amp;lt;list slidevalues&amp;gt;&lt;br/&gt;/ items = (5,8,20,50,125,5,8,20,50,125,5,8,20,50,125,5,8,20,50,125,5,8,20,50,125)&lt;br/&gt;/selectionmode = random&lt;br/&gt;&amp;lt;/list&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;list slideprob&amp;gt;&lt;br/&gt;/ items = (13, 13, 13, 13, 13, 25, 25, 25, 25, 25, 38, 38, 38, 38, 38, 50, 50, 50, 50, 50, 75, 75, 75, 75, 75)&lt;br/&gt;/selectionmode = list.slidevalues.currentindex&lt;br/&gt;&amp;lt;/list&amp;gt;&lt;br/&gt;&lt;br/&gt;would be&lt;br/&gt;&lt;br/&gt;&amp;lt;counter slidevalues&amp;gt;&lt;br/&gt;/ items = (5,8,20,50,125,5,8,20,50,125,5,8,20,50,125,5,8,20,50,125,5,8,20,50,125)&lt;br/&gt;/ select = noreplace&lt;br/&gt;&amp;lt;/counter&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;counter slideprob&amp;gt;&lt;br/&gt;/ items = (13, 13, 13, 13, 13, 25, 25, 25, 25, 25, 38, 38, 38, 38, 38, 50, 50, 50, 50, 50, 75, 75, 75, 75, 75)&lt;br/&gt;/ select = current(slidevalues)&lt;br/&gt;&amp;lt;/counter&amp;gt;&lt;br/&gt;&lt;br/&gt;with &lt;br/&gt;&lt;br/&gt;&amp;lt;trial sometrial&amp;gt;&lt;br/&gt;/ ontrialbegin = [values.s_value = counter.slidevalues.selectedvalue; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.s_prob = counter.slideprob.selectedvalue; ]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ s_value = 0&lt;br/&gt;/ s_prob = 0&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;to sample items from the two counters.&lt;br/&gt;&lt;br/&gt;I've laid out the most important differences between Inquisit 4 and 3 syntax, including what you need to change to go from 4 to 3, throughout various threads. See e.g. &lt;a href="https://www.millisecond.com/forums/Topic16606.aspx"&gt;https://www.millisecond.com/forums/Topic16606.aspx&lt;/a&gt; and &lt;a href="https://www.millisecond.com/forums/Topic15587.aspx#bm15588"&gt;https://www.millisecond.com/forums/Topic15587.aspx#bm15588&lt;/a&gt; .&lt;br/&gt;</description><pubDate>Tue, 03 May 2016 14:28:26 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19011.aspx</link><description>Oh. Ok. I use the list function quite a bit. I use it to pair up two different numbers with each picture (A winning amount and a winning percentage)&lt;br/&gt;&lt;br/&gt;&amp;lt;list slidevalues&amp;gt;&lt;br/&gt;/ items = (5,8,20,50,125,5,8,20,50,125,5,8,20,50,125,5,8,20,50,125,5,8,20,50,125)&lt;br/&gt;/selectionmode = random&lt;br/&gt;&amp;lt;/list&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;list slideprob&amp;gt;&lt;br/&gt;/ items = (13, 13, 13, 13, 13, 25, 25, 25, 25, 25, 38, 38, 38, 38, 38, 50, 50, 50, 50, 50, 75, 75, 75, 75, 75)&lt;br/&gt;/selectionmode = list.slidevalues.currentindex&lt;br/&gt;&amp;lt;/list&amp;gt;&lt;br/&gt;&lt;br/&gt;I could not find anything on counters in the language reference, and simply replacing all the "list" language with counters did not work. Is there a certain way to pair these numbers with these pictures using the counter function?&lt;br/&gt;</description><pubDate>Tue, 03 May 2016 14:00:49 GMT</pubDate><dc:creator>nonamenick</dc:creator></item><item><title>RE: Inquisit 4 to Inquisit 3</title><link>https://forums.millisecond.com/Topic19008.aspx</link><description>There are no &amp;lt;list&amp;gt; elements in Inquisit 3 syntax. &amp;lt;list&amp;gt; elements were introduced in Inquisit 4. You need to replace them with the Inquisit 3 predecessor: &amp;lt;counter&amp;gt; elements.&lt;br/&gt;</description><pubDate>Tue, 03 May 2016 13:20:52 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>