﻿<?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  » Presenting Images</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Fri, 22 May 2026 13:04:20 GMT</lastBuildDate><ttl>20</ttl><item><title>Presenting Images</title><link>https://forums.millisecond.com/Topic21518.aspx</link><description>I need to make a simple script which displays 20 images and collects 20 answers (one for each image), but I have a lot of trouble figuring it out, I've never used Inquisit and I'm not a programmer. Could anyone help? I'm thinking this is extremely simple to program, I just can't figure out the actual script.&lt;br/&gt;&lt;br/&gt;Thank you.&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 12:51:18 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21610.aspx</link><description>Makes sense. Thank you.&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 12:51:18 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21608.aspx</link><description>&lt;div data-id="21607" class="if-quote-wrapper" unselectable="on" data-guid="1494874927355"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21607" 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="21607" 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="21607" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Monday, May 15, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21607"&gt;&lt;div class="if-quote-message-margin"&gt;I tried adding another survey&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage genderpage&amp;gt;&lt;br/&gt;/ ontrialend = [values.emostate = dropdown.emoquestion.response]&lt;br/&gt;/ questions = [1=genderquestion]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown genderquestion&amp;gt;&lt;br/&gt;/ caption = "Gender:"&lt;br/&gt;/ options = ("Male", "Female")&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;But when I run it, nothing appears. Any clue why?&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21607"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;A &amp;lt;surveypage&amp;gt; is a kind of &amp;lt;trial&amp;gt;. That trial needs to be run by a block (a &amp;lt;block&amp;gt; or &amp;lt;survey&amp;gt; element). That block needs to be run by the &amp;lt;expt&amp;gt;.&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;/ select = sequence&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item pictureitems&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;/ 2 = "image02.jpg"&lt;br/&gt;/ 3 = "image03.jpg"&lt;br/&gt;/ 4 = "image04.jpg"&lt;br/&gt;/ 5 = "image05.jpg"&lt;br/&gt;/ 6 = "image06.jpg"&lt;br/&gt;/ 7 = "image07.jpg"&lt;br/&gt;/ 8 = "image08.jpg"&lt;br/&gt;/ 9 = "image09.jpg"&lt;br/&gt;/ 10 = "image10.jpg"&lt;br/&gt;/ 11 = "image11.jpg"&lt;br/&gt;/ 12 = "image12.jpg"&lt;br/&gt;/ 13 = "image13.jpg"&lt;br/&gt;/ 14 = "image14.jpg"&lt;br/&gt;/ 15 = "image15.jpg"&lt;br/&gt;/ 16 = "image16.jpg"&lt;br/&gt;/ 17 = "image17.jpg"&lt;br/&gt;/ 18 = "image18.jpg"&lt;br/&gt;/ 19 = "image19.jpg"&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;// press y or n&lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.pictrialnumber += 1;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem = picture.mypicture.currentitem;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.showpiclatency = trial.showpicture.latency;&lt;br/&gt;]&lt;br/&gt;/ ontrialend = [if(trial.showpicture.correct) values.showpicresponse = "y" else values.showpicresponse = "n"]&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;/ validresponse = ("y", "n")&lt;br/&gt;/ correctresponse = ("y")&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;// skip openended if answer in showpicture trial was wrong (= "n"; no, did not see anything)&lt;br/&gt;&amp;lt;openended typeanswer&amp;gt;&lt;br/&gt;/ skip = [trial.showpicture.error]&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = openended.typeanswer.response;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = openended.typeanswer.latency;&lt;br/&gt;]&lt;br/&gt;/ stimulusframes = [1=typeprompt]&lt;br/&gt;/ size = (70%, 40%)&lt;br/&gt;/ position = (50%, 70%)&lt;br/&gt;/ multiline = true&lt;br/&gt;/ charlimit = 10000&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;// record data for the two above elements in a single line&lt;br/&gt;&amp;lt;trial picdata&amp;gt;&lt;br/&gt;/ recorddata = true&lt;br/&gt;/ trialduration = 0&lt;br/&gt;/ validresponse = (0)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text typeprompt&amp;gt;&lt;br/&gt;/ items = ("Please describe what you saw:")&lt;br/&gt;/ position = (50%, 20%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block picblock&amp;gt;&lt;br/&gt;/ trials = [1-20 = sequence(showpicture, typeanswer, picdata)]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block emoblock&amp;gt;&lt;br/&gt;&lt;strong&gt;/ trials = [1=emopage; 2=genderpage]&lt;/strong&gt;&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage emopage&amp;gt;&lt;br/&gt;/ ontrialend = [values.emostate = dropdown.emoquestion.response]&lt;br/&gt;/ questions = [1=emoquestion]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown emoquestion&amp;gt;&lt;br/&gt;/ caption = "Your current emotional state:"&lt;br/&gt;/ options = ("bad", "neutral", "good")&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage genderpage&amp;gt;&lt;br/&gt;&lt;strong&gt;/ ontrialend = [values.gender = dropdown.genderquestion.response]&lt;/strong&gt;&lt;br/&gt;/ questions = [1=genderquestion]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown genderquestion&amp;gt;&lt;br/&gt;/ caption = "Gender:"&lt;br/&gt;/ options = ("Male", "Female")&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ preinstructions = (intro)&lt;br/&gt;/ blocks = [1=&lt;strong&gt;emoblock&lt;/strong&gt;; 2=picblock]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page intro&amp;gt;&lt;br/&gt;^intro goes here.&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ pictrialnumber = 0&lt;br/&gt;/ picitem = ""&lt;br/&gt;/ showpicresponse = ""&lt;br/&gt;/ showpiclatency = ""&lt;br/&gt;/ picdescription = ""&lt;br/&gt;/ picdescriptionlatency = ""&lt;br/&gt;/ emostate = ""&lt;br/&gt;&lt;strong&gt;/ gender = ""&lt;/strong&gt;&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;data&amp;gt;&lt;br/&gt;/ columns = [date, time, subject, group, blocknum, blockcode, trialnum, trialcode, values.emostate,&lt;strong&gt; values.gender&lt;/strong&gt;, values.pictrialnumber, values.showpiclatency, values.showpicresponse,&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem, values.picdescription, values.picdescriptionlatency]&lt;br/&gt;&amp;lt;/data&amp;gt;&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 12:03:00 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21607.aspx</link><description>I tried adding another survey&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage genderpage&amp;gt;&lt;br/&gt;/ ontrialend = [values.emostate = dropdown.emoquestion.response]&lt;br/&gt;/ questions = [1=genderquestion]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown genderquestion&amp;gt;&lt;br/&gt;/ caption = "Gender:"&lt;br/&gt;/ options = ("Male", "Female")&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;But when I run it, nothing appears. Any clue why?&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 10:22:29 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21605.aspx</link><description>&lt;div data-id="21604" class="if-quote-wrapper" unselectable="on" data-guid="1494864108911"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21604" 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="21604" 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="21604" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Monday, May 15, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21604"&gt;&lt;div class="if-quote-message-margin"&gt;Ah, thanks for the info. Great help.&lt;br/&gt;&lt;br/&gt;I tried adding an additional survey to collect the gender, but I can't make it work and I don't find anything in the help documentation. Any idea how I would do that?&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21604"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;In the same way as the emotional state is collected. To keep things simple, just add the gender question to the already existing surveypage. For an introduction to the various survey features, see the survey tutorial in the documentation: &lt;a href="https://www.millisecond.com/support/docs/v4/html/tutorials/demographic_survey/surveytutorial.htm"&gt;https://www.millisecond.com/support/docs/v4/html/tutorials/demographic_survey/surveytutorial.htm&lt;/a&gt;&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 09:04:22 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21604.aspx</link><description>Ah, thanks for the info. Great help.&lt;br/&gt;&lt;br/&gt;I tried adding an additional survey to collect the gender, but I can't make it work and I don't find anything in the help documentation. Any idea how I would do that?&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 08:54:15 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21598.aspx</link><description>&lt;div data-id="21595" class="if-quote-wrapper" unselectable="on" data-guid="1494858817034"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21595" 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="21595" 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="21595" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Sunday, May 14, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21595"&gt;&lt;div class="if-quote-message-margin"&gt;Managed to make that work. Is there any way to collect these answers horizontally for each subject, so I can have the vertical dimension reserved for separate subjects? Also, can I get the results to be associated with 0 for no and 1 for yes?&amp;nbsp;I've been searching in the documentation, but I haven't found anything. &lt;br/&gt;&lt;br/&gt;Thank you.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21595"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;&amp;gt; Managed to make that work. Is there any way to collect these answers horizontally for each subject.&lt;br/&gt;&lt;br/&gt;No. You will need to restructure the data using e.g SPSS. See e.g. &lt;a href="http://www.tqmp.org/RegularArticles/vol02-1/p020/index.html"&gt;http://www.tqmp.org/RegularArticles/vol02-1/p020/index.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&amp;gt; Also, can I get the results to be associated with 0 for no and 1 for yes?&lt;br/&gt;&lt;br/&gt;Yes, change &lt;br/&gt;&lt;br/&gt;// press y or n&lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.pictrialnumber += 1;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem = picture.mypicture.currentitem;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.showpiclatency = trial.showpicture.latency;&lt;br/&gt;]&lt;br/&gt;&lt;strong&gt;/ ontrialend = [if(trial.showpicture.correct) values.showpicresponse = "y" else values.showpicresponse = "n"]&lt;/strong&gt;&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;/ validresponse = ("y", "n")&lt;br/&gt;/ correctresponse = ("y")&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;to &lt;br/&gt;// press y or n&lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.pictrialnumber += 1;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem = picture.mypicture.currentitem;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.showpiclatency = trial.showpicture.latency;&lt;br/&gt;]&lt;br/&gt;&lt;strong&gt;/ ontrialend = [if(trial.showpicture.correct) values.showpicresponse = 1 else values.showpicresponse = 0]&lt;/strong&gt;&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;/ validresponse = ("y", "n")&lt;br/&gt;/ correctresponse = ("y")&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Mon, 15 May 2017 07:35:51 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21595.aspx</link><description>Managed to make that work. Is there any way to collect these answers horizontally for each subject, so I can have the vertical dimension reserved for separate subjects? Also, can I get the results to be associated with 0 for no and 1 for yes?&amp;nbsp;I've been searching in the documentation, but I haven't found anything. &lt;br/&gt;&lt;br/&gt;Thank you.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Sun, 14 May 2017 09:17:48 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21593.aspx</link><description>This hepled a lot. Thank you. I'm getting an error message saying "Invalid expression trialnu". I'm guessing it has something to do with &lt;br/&gt;&lt;br/&gt;/ columns = [date, time, subject, group, blocknum, blockcode,&lt;strong&gt; trialnu&lt;/strong&gt;, trialcode, ?&lt;br/&gt;</description><pubDate>Sat, 13 May 2017 04:11:48 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21585.aspx</link><description>&lt;div data-id="21583" class="if-quote-wrapper" unselectable="on" data-guid="1494615799755"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21583" 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="21583" 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="21583" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Friday, May 12, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21583"&gt;&lt;div class="if-quote-message-margin"&gt;Ah, this is perfect. Thank you so much.&lt;br/&gt;&lt;br/&gt;I just need a briefing intro page and after that, before the images are displayed, a drop down/bulletpoint list with 3 entries asking the participants what their emotional state at the time of the testing is (bad/neutral/good) and that would be everything. How would I do that?&lt;br/&gt;&lt;br/&gt;Thanks again and have a great weekend.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21583"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;For the briefing page set up a &amp;lt;page&amp;gt; element and display it via an &amp;lt;expt&amp;gt;'s /preinstructions.&lt;br/&gt;&lt;br/&gt;For the emotional state question, set up a &amp;lt;surveypage&amp;gt; with a &amp;lt;dropdown&amp;gt;, put the page in a &amp;lt;block&amp;gt;, run the now two &amp;lt;block&amp;gt;s via the &amp;lt;expt&amp;gt;.&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;/ select = sequence&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item pictureitems&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;/ 2 = "image02.jpg"&lt;br/&gt;/ 3 = "image03.jpg"&lt;br/&gt;/ 4 = "image04.jpg"&lt;br/&gt;/ 5 = "image05.jpg"&lt;br/&gt;/ 6 = "image06.jpg"&lt;br/&gt;/ 7 = "image07.jpg"&lt;br/&gt;/ 8 = "image08.jpg"&lt;br/&gt;/ 9 = "image09.jpg"&lt;br/&gt;/ 10 = "image10.jpg"&lt;br/&gt;/ 11 = "image11.jpg"&lt;br/&gt;/ 12 = "image12.jpg"&lt;br/&gt;/ 13 = "image13.jpg"&lt;br/&gt;/ 14 = "image14.jpg"&lt;br/&gt;/ 15 = "image15.jpg"&lt;br/&gt;/ 16 = "image16.jpg"&lt;br/&gt;/ 17 = "image17.jpg"&lt;br/&gt;/ 18 = "image18.jpg"&lt;br/&gt;/ 19 = "image19.jpg"&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;// press y or n&lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.pictrialnumber += 1;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem = picture.mypicture.currentitem;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.showpiclatency = trial.showpicture.latency;&lt;br/&gt;]&lt;br/&gt;/ ontrialend = [if(trial.showpicture.correct) values.showpicresponse = "y" else values.showpicresponse = "n"]&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;/ validresponse = ("y", "n")&lt;br/&gt;/ correctresponse = ("y")&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;// skip openended if answer in showpicture trial was wrong (= "n"; no, did not see anything)&lt;br/&gt;&amp;lt;openended typeanswer&amp;gt;&lt;br/&gt;/ skip = [trial.showpicture.error]&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = openended.typeanswer.response;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = openended.typeanswer.latency;&lt;br/&gt;]&lt;br/&gt;/ stimulusframes = [1=typeprompt]&lt;br/&gt;/ size = (70%, 40%)&lt;br/&gt;/ position = (50%, 70%)&lt;br/&gt;/ multiline = true&lt;br/&gt;/ charlimit = 10000&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;// record data for the two above elements in a single line&lt;br/&gt;&amp;lt;trial picdata&amp;gt;&lt;br/&gt;/ recorddata = true&lt;br/&gt;/ trialduration = 0&lt;br/&gt;/ validresponse = (0)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text typeprompt&amp;gt;&lt;br/&gt;/ items = ("Please describe what you saw:")&lt;br/&gt;/ position = (50%, 20%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block picblock&amp;gt;&lt;br/&gt;/ trials = [1-20 = sequence(showpicture, typeanswer, picdata)]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block emoblock&amp;gt;&lt;br/&gt;/ trials = [1=emopage]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage emopage&amp;gt;&lt;br/&gt;/ ontrialend = [values.emostate = dropdown.emoquestion.response]&lt;br/&gt;/ questions = [1=emoquestion]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown emoquestion&amp;gt;&lt;br/&gt;/ caption = "Your current emotional state:"&lt;br/&gt;/ options = ("bad", "neutral", "good")&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ preinstructions = (intro)&lt;br/&gt;/ blocks = [1=emoblock; 2=picblock]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;page intro&amp;gt;&lt;br/&gt;^intro goes here.&lt;br/&gt;&amp;lt;/page&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ pictrialnumber = 0&lt;br/&gt;/ picitem = ""&lt;br/&gt;/ showpicresponse = ""&lt;br/&gt;/ showpiclatency = ""&lt;br/&gt;/ picdescription = ""&lt;br/&gt;/ picdescriptionlatency = ""&lt;br/&gt;/ emostate = ""&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;data&amp;gt;&lt;br/&gt;/ columns = [date, time, subject, group, blocknum, blockcode, trialnu, trialcode, values.emostate, values.pictrialnumber, values.showpiclatency, values.showpicresponse,&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem, values.picdescription, values.picdescriptionlatency]&lt;br/&gt;&amp;lt;/data&amp;gt;&lt;br/&gt;&lt;br/&gt;You will find most of those basics -- setting up trials, blocks, expts, instruction pages, survey questions, etc. -- covered in the tutorials in the Inquisit documentation. I recommend you give those a look if you haven't done so yet.&lt;br/&gt;</description><pubDate>Fri, 12 May 2017 12:11:19 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21583.aspx</link><description>Ah, this is perfect. Thank you so much.&lt;br/&gt;&lt;br/&gt;I just need a briefing intro page and after that, before the images are displayed, a drop down/bulletpoint list with 3 entries asking the participants what their emotional state at the time of the testing is (bad/neutral/good) and that would be everything. How would I do that?&lt;br/&gt;&lt;br/&gt;Thanks again and have a great weekend.&lt;br/&gt;</description><pubDate>Fri, 12 May 2017 09:16:22 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21574.aspx</link><description>&lt;div data-id="21571" class="if-quote-wrapper" unselectable="on" data-guid="1494543501983"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21571" 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="21571" 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="21571" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Thursday, May 11, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21571"&gt;&lt;div class="if-quote-message-margin"&gt;&lt;img src="https://www.millisecond.com/forums/Uploads/Images/da6d18a0-a689-4085-adb5-f9ef.png" data-download-url="https://www.millisecond.com/forums/Uploads/Images/3b26522e-78ff-4800-af0d-2c0c.png"&gt;&lt;br/&gt;I'd need the "cat on the right side" and "raindeer in the center" to be encoded in the 03.png and 06.png lines, respectively. After 50pct and 20pct, I would need an extra category which says "answer". Maybe that means it should be associated with the image stimulus and just have a textbox pop up over the image when you press Y? (might not be possible, but having the response in the same line as the yes/no answer would help when dealing with larger amounts of data).&lt;br/&gt;&lt;br/&gt;Thanks.&lt;br/&gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21571"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;To do this, you should make use of a bunch of global variables (&amp;lt;values&amp;gt;), a dedicated &amp;lt;trial&amp;gt; run after the showpicture-trial and openended to dump the data, and lastly the &amp;lt;data&amp;gt; element's /columns attribute, which allows you to specify exactly what you do and do not want recorded:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;/ select = sequence&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item pictureitems&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;/ 2 = "image02.jpg"&lt;br/&gt;/ 3 = "image03.jpg"&lt;br/&gt;/ 4 = "image04.jpg"&lt;br/&gt;/ 5 = "image05.jpg"&lt;br/&gt;/ 6 = "image06.jpg"&lt;br/&gt;/ 7 = "image07.jpg"&lt;br/&gt;/ 8 = "image08.jpg"&lt;br/&gt;/ 9 = "image09.jpg"&lt;br/&gt;/ 10 = "image10.jpg"&lt;br/&gt;/ 11 = "image11.jpg"&lt;br/&gt;/ 12 = "image12.jpg"&lt;br/&gt;/ 13 = "image13.jpg"&lt;br/&gt;/ 14 = "image14.jpg"&lt;br/&gt;/ 15 = "image15.jpg"&lt;br/&gt;/ 16 = "image16.jpg"&lt;br/&gt;/ 17 = "image17.jpg"&lt;br/&gt;/ 18 = "image18.jpg"&lt;br/&gt;/ 19 = "image19.jpg"&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;// press y or n&lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.pictrialnumber += 1;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem = picture.mypicture.currentitem; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = "";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.showpiclatency = trial.showpicture.latency;&lt;br/&gt;]&lt;br/&gt;/ ontrialend = [if(trial.showpicture.correct) values.showpicresponse = "y" else values.showpicresponse = "n"]&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;/ validresponse = ("y", "n")&lt;br/&gt;/ correctresponse = ("y")&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;// skip openended if answer in showpicture trial was wrong (= "n"; no, did not see anything)&lt;br/&gt;&amp;lt;openended typeanswer&amp;gt;&lt;br/&gt;/ skip = [trial.showpicture.error]&lt;br/&gt;/ ontrialend = [&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescription = openended.typeanswer.response;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picdescriptionlatency = openended.typeanswer.latency;&lt;br/&gt;]&lt;br/&gt;/ stimulusframes = [1=typeprompt]&lt;br/&gt;/ size = (70%, 40%)&lt;br/&gt;/ position = (50%, 70%)&lt;br/&gt;/ multiline = true&lt;br/&gt;/ charlimit = 10000&lt;br/&gt;/ recorddata = false&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;// record data for the two above elements in a single line&lt;br/&gt;&amp;lt;trial picdata&amp;gt;&lt;br/&gt;/ recorddata = true&lt;br/&gt;/ trialduration = 0&lt;br/&gt;/ validresponse = (0)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text typeprompt&amp;gt;&lt;br/&gt;/ items = ("Please describe what you saw:")&lt;br/&gt;/ position = (50%, 20%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-20 = sequence(showpicture, typeanswer, picdata)]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;values&amp;gt;&lt;br/&gt;/ pictrialnumber = 0&lt;br/&gt;/ picitem = ""&lt;br/&gt;/ showpicresponse = ""&lt;br/&gt;/ showpiclatency = ""&lt;br/&gt;/ picdescription = ""&lt;br/&gt;/ picdescriptionlatency = ""&lt;br/&gt;&amp;lt;/values&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;data&amp;gt;&lt;br/&gt;/ columns = [date, time, subject, group, values.pictrialnumber, values.showpiclatency, values.showpicresponse, &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; values.picitem, values.picdescription, values.picdescriptionlatency]&lt;br/&gt;&amp;lt;/data&amp;gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Thu, 11 May 2017 16:17:08 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21571.aspx</link><description>&lt;img src="https://www.millisecond.com/forums/Uploads/Images/da6d18a0-a689-4085-adb5-f9ef.png" data-download-url="https://www.millisecond.com/forums/Uploads/Images/3b26522e-78ff-4800-af0d-2c0c.png"&gt;&lt;br/&gt;I'd need the "cat on the right side" and "raindeer in the center" to be encoded in the 03.png and 06.png lines, respectively. After 50pct and 20pct, I would need an extra category which says "answer". Maybe that means it should be associated with the image stimulus and just have a textbox pop up over the image when you press Y? (might not be possible, but having the response in the same line as the yes/no answer would help when dealing with larger amounts of data).&lt;br/&gt;&lt;br/&gt;Thanks.&lt;br/&gt;&lt;br/&gt;</description><pubDate>Thu, 11 May 2017 14:30:17 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21570.aspx</link><description>&lt;div data-id="21569" class="if-quote-wrapper" unselectable="on" data-guid="1494534707538"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21569" 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="21569" 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="21569" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Thursday, May 11, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21569"&gt;&lt;div class="if-quote-message-margin"&gt;This is so great, thank you. Would it be possible to code the written answers in the previous entry? (If a correct answer is provided as Y and then described in the letterbox for image05.jpg, could the entry get a category which contains the answer) &lt;br/&gt;&lt;br/&gt;It would be very helpful for moving the data to SPSS afterwards. Right now the text answer is coded in the text stimulus entry (Please describe what you saw:), which follows the image stimulus entry.&lt;br/&gt;&lt;br/&gt;Hope it makes sense. Thank you.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21569"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;&amp;gt; This is so great, thank you. Would it be possible to code the written answers in the previous entry? &lt;br/&gt;&amp;gt; (If a correct answer is provided as Y and then described in the letterbox for image05.jpg, could the entry get a category which contains the answer) &lt;br/&gt;&lt;br/&gt;Not sure I fully understand this description. Specifically, with respect to "could the entry get a category which contains the answer":&lt;br/&gt;(1) Which "entry"?&lt;br/&gt;(2) What do you mean by "category"?&lt;br/&gt;&lt;br/&gt;Perhaps give me a concrete example of how you want the data output to look in *both* the case of a "y" response plus written description and the case of a "n" response.&lt;br/&gt;</description><pubDate>Thu, 11 May 2017 13:34:45 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21569.aspx</link><description>This is so great, thank you. Would it be possible to code the written answers in the previous entry? (If a correct answer is provided as Y and then described in the letterbox for image05.jpg, could the entry get a category which contains the answer) &lt;br/&gt;&lt;br/&gt;It would be very helpful for moving the data to SPSS afterwards. Right now the text answer is coded in the text stimulus entry (Please describe what you saw:), which follows the image stimulus entry.&lt;br/&gt;&lt;br/&gt;Hope it makes sense. Thank you.&lt;br/&gt;</description><pubDate>Thu, 11 May 2017 13:17:33 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21547.aspx</link><description>&lt;div data-id="21546" class="if-quote-wrapper" unselectable="on" data-guid="1494441389802"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21546" 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="21546" 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="21546" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Wednesday, May 10, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21546"&gt;&lt;div class="if-quote-message-margin"&gt;One more question here. If instead of asking participants what they saw in each image, I would want to have them press different keys if they decide they saw something (Y for Yes, where a textbox appears in which they can write their answer and N for No and the image just skips to the next one) how would I do that? &lt;br/&gt;&lt;br/&gt;Thank you.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21546"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Like this, for example:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;/ select = sequence&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item pictureitems&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;/ 2 = "image02.jpg"&lt;br/&gt;/ 3 = "image03.jpg"&lt;br/&gt;/ 4 = "image04.jpg"&lt;br/&gt;/ 5 = "image05.jpg"&lt;br/&gt;/ 6 = "image06.jpg"&lt;br/&gt;/ 7 = "image07.jpg"&lt;br/&gt;/ 8 = "image08.jpg"&lt;br/&gt;/ 9 = "image09.jpg"&lt;br/&gt;/ 10 = "image10.jpg"&lt;br/&gt;/ 11 = "image11.jpg"&lt;br/&gt;/ 12 = "image12.jpg"&lt;br/&gt;/ 13 = "image13.jpg"&lt;br/&gt;/ 14 = "image14.jpg"&lt;br/&gt;/ 15 = "image15.jpg"&lt;br/&gt;/ 16 = "image16.jpg"&lt;br/&gt;/ 17 = "image17.jpg"&lt;br/&gt;/ 18 = "image18.jpg"&lt;br/&gt;/ 19 = "image19.jpg"&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;// press y or n &lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;&lt;strong&gt;/ validresponse = ("y", "n")&lt;br/&gt;/ correctresponse = ("y")&lt;/strong&gt;&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;// skip openended if answer in showpicture trial was wrong (= "n"; no, did not see anything)&lt;br/&gt;&amp;lt;openended typeanswer&amp;gt;&lt;br/&gt;&lt;strong&gt;/ skip = [trial.showpicture.error]&lt;/strong&gt;&lt;br/&gt;/ stimulusframes = [1=typeprompt]&lt;br/&gt;/ size = (70%, 40%)&lt;br/&gt;/ position = (50%, 70%)&lt;br/&gt;/ multiline = true&lt;br/&gt;/ charlimit = 10000&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text typeprompt&amp;gt;&lt;br/&gt;/ items = ("Please describe what you saw:")&lt;br/&gt;/ position = (50%, 20%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-20 = sequence(showpicture, typeanswer)]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;</description><pubDate>Wed, 10 May 2017 11:40:53 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21546.aspx</link><description>One more question here. If instead of asking participants what they saw in each image, I would want to have them press different keys if they decide they saw something (Y for Yes, where a textbox appears in which they can write their answer and N for No and the image just skips to the next one) how would I do that? &lt;br/&gt;&lt;br/&gt;Thank you.&lt;br/&gt;</description><pubDate>Wed, 10 May 2017 10:31:16 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21525.aspx</link><description>Helps a lot, it's exactly what I needed. Thank you.&lt;br/&gt;</description><pubDate>Mon, 08 May 2017 23:50:24 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21523.aspx</link><description>&lt;div data-id="21522" class="if-quote-wrapper" unselectable="on" data-guid="1494294746286"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21522" 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="21522" 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="21522" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Monday, May 8, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21522"&gt;&lt;div class="if-quote-message-margin"&gt;Thank you so much, it works like a charm. One more thing: do you happen to know why they're displayed randomly? Need them to be displayed in that order (1-20), but it starts with a different one each time and it shows them in a random order.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21522"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;Random item selection is the default -- and I explicitly set it, because that's what most people want. For sequential selection, simply change&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;&lt;strong&gt;/ select = noreplace&lt;/strong&gt;&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;(noreplace = random selection without replacement)&lt;br/&gt;&lt;br/&gt;to&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;&lt;strong&gt;/ select = sequence&lt;/strong&gt;&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;(sequence = sequential selection, i.e. items are selected in the order given)&lt;br/&gt;&lt;br/&gt;Hope this helps.&lt;br/&gt;</description><pubDate>Mon, 08 May 2017 18:54:22 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21522.aspx</link><description>Thank you so much, it works like a charm. One more thing: do you happen to know why they're displayed randomly? Need them to be displayed in that order (1-20), but it starts with a different one each time and it shows them in a random order.&lt;br/&gt;</description><pubDate>Mon, 08 May 2017 14:37:19 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21521.aspx</link><description>&lt;div data-id="21520" class="if-quote-wrapper" unselectable="on" data-guid="1494277691840"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21520" 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="21520" 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="21520" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Monday, May 8, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21520"&gt;&lt;div class="if-quote-message-margin"&gt;Thanks so much, this helps a lot.&lt;br/&gt;&lt;br/&gt;I just wanna display 20 pictures and have subjects press a key (enter or whatever other key) to display a field in which they write what they see. I'm guessing that would be &amp;lt;openended&amp;gt;?&lt;br/&gt;&lt;br/&gt;I'm displaying the pictures full screen and that's why I want to have the field pop up after they look at it, so they're unobstructed while the subjects look at them.&lt;br/&gt;&lt;br/&gt;Not sure what goes in here&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;...&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;Right now I'm getting an error saying Could not locate trial 'pictureitems'&lt;br/&gt;&lt;br/&gt;Thanks again.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21520"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;&amp;gt; Not sure what goes in here&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;&lt;strong&gt;/ items = pictureitems&lt;/strong&gt;&lt;br/&gt;...&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;refers to the &amp;lt;item&amp;gt; element in the example code I posted:&lt;br/&gt;&lt;br/&gt;&amp;lt;item &lt;strong&gt;pictureitems&lt;/strong&gt;&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;...&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;That's where you would list your 20 image items.&lt;br/&gt;&lt;br/&gt;&amp;gt; I just wanna display 20 pictures and have subjects press a key (enter or whatever other key) to display a field in which they write what they see.&lt;br/&gt;&lt;br/&gt;Then you would use *both* a &amp;lt;trial&amp;gt; element -- to display the image full screen and wait for a key press -- followed by an &amp;lt;openended&amp;gt; to collect the description. In a nutshell:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;/ select = noreplace&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item pictureitems&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;/ 2 = "image02.jpg"&lt;br/&gt;/ 3 = "image03.jpg"&lt;br/&gt;/ 4 = "image04.jpg"&lt;br/&gt;/ 5 = "image05.jpg"&lt;br/&gt;/ 6 = "image06.jpg"&lt;br/&gt;/ 7 = "image07.jpg"&lt;br/&gt;/ 8 = "image08.jpg"&lt;br/&gt;/ 9 = "image09.jpg"&lt;br/&gt;/ 10 = "image10.jpg"&lt;br/&gt;/ 11 = "image11.jpg"&lt;br/&gt;/ 12 = "image12.jpg"&lt;br/&gt;/ 13 = "image13.jpg"&lt;br/&gt;/ 14 = "image14.jpg"&lt;br/&gt;/ 15 = "image15.jpg"&lt;br/&gt;/ 16 = "image16.jpg"&lt;br/&gt;/ 17 = "image17.jpg"&lt;br/&gt;/ 18 = "image18.jpg"&lt;br/&gt;/ 19 = "image19.jpg"&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;// press spacebar to move on&lt;br/&gt;&amp;lt;trial showpicture&amp;gt;&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;/ validresponse = (57)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;openended typeanswer&amp;gt;&lt;br/&gt;/ stimulusframes = [1=typeprompt]&lt;br/&gt;/ size = (70%, 40%)&lt;br/&gt;/ position = (50%, 70%)&lt;br/&gt;/ multiline = true&lt;br/&gt;/ charlimit = 10000&lt;br/&gt;&amp;lt;/openended&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text typeprompt&amp;gt;&lt;br/&gt;/ items = ("Please describe what you saw:")&lt;br/&gt;/ position = (50%, 20%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-20 = sequence(showpicture, typeanswer)]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Mon, 08 May 2017 14:19:14 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21520.aspx</link><description>Thanks so much, this helps a lot.&lt;br/&gt;&lt;br/&gt;I just wanna display 20 pictures and have subjects press a key (enter or whatever other key) to display a field in which they write what they see. I'm guessing that would be &amp;lt;openended&amp;gt;?&lt;br/&gt;&lt;br/&gt;I'm displaying the pictures full screen and that's why I want to have the field pop up after they look at it, so they're unobstructed while the subjects look at them.&lt;br/&gt;&lt;br/&gt;Not sure what goes in here&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;...&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;Right now I'm getting an error saying Could not locate trial 'pictureitems'&lt;br/&gt;&lt;br/&gt;Thanks again.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Mon, 08 May 2017 12:57:47 GMT</pubDate><dc:creator>cutkiller</dc:creator></item><item><title>RE: Presenting Images</title><link>https://forums.millisecond.com/Topic21519.aspx</link><description>&lt;div data-id="21518" class="if-quote-wrapper" unselectable="on" data-guid="1494267687889"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="21518" 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="21518" 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="21518" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;cutkiller - Monday, May 8, 2017&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-21518"&gt;&lt;div class="if-quote-message-margin"&gt;I need to make a simple script which displays 20 images and collects 20 answers (one for each image), but I have a lot of trouble figuring it out, I've never used Inquisit and I'm not a programmer. Could anyone help? I'm thinking this is extremely simple to program, I just can't figure out the actual script.&lt;br/&gt;&lt;br/&gt;Thank you.&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="21518"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/div&gt;&lt;br/&gt;At a minimum, you need a &amp;lt;picture&amp;gt; element with the 20 images as its items, a &amp;lt;trial&amp;gt; element that displays the &amp;lt;picture&amp;gt; element and collects a response, and a &amp;lt;block&amp;gt; that runs the &amp;lt;trial&amp;gt; 20 times.&lt;br/&gt;&lt;br/&gt;&amp;lt;picture mypicture&amp;gt;&lt;br/&gt;/ items = pictureitems&lt;br/&gt;...&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item pictureitems&amp;gt;&lt;br/&gt;/ 1 = "image01.jpg"&lt;br/&gt;...&lt;br/&gt;/ 20 = "image20.jpg"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial mytrial&amp;gt;&lt;br/&gt;/ stimulusframes = [1=mypicture]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block myblock&amp;gt;&lt;br/&gt;/ trials = [1-20 = mytrial]&lt;br/&gt;...&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;Depending on what kind of "answer" you need to collect, you might want to use either &amp;lt;likert&amp;gt; or &amp;lt;openended&amp;gt; elements instead of &amp;lt;trial&amp;gt;.&lt;br/&gt;&lt;br/&gt;The Picture IAT tutorial in the Inquisit documentation might be worth a look, too, you'll find the relevant basics covered there in some greater detail.&lt;br/&gt;</description><pubDate>Mon, 08 May 2017 11:27:46 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>