﻿<?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 6  » Beginner questions</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 24 Sep 2026 19:05:53 GMT</lastBuildDate><ttl>20</ttl><item><title>Beginner questions</title><link>https://forums.millisecond.com/Topic35526.aspx</link><description>Hi! I'm an undergraduate psychology student doing my first study this summer. I have very little programming experience and am trying to learn inquisit for the first time. I am not really a computer person typically so this has been a confusing experience. Does anyone have a basic "hello world" script I could look at? I can't find any online. Any help or tips would be appreciated! Thanks!</description><pubDate>Thu, 13 Jul 2023 19:05:52 GMT</pubDate><dc:creator>agr1020</dc:creator></item><item><title>RE: Beginner questions</title><link>https://forums.millisecond.com/Topic35528.aspx</link><description>&lt;blockquote data-id="35527" class="if-quote-wrapper" unselectable="on" data-guid="1689275140414" contenteditable="false" id="if_insertedNode_1689275139343"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="35527" 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="35527" 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="35527" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Dave - 7/13/2023&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-35527"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;&lt;blockquote data-id="35526" class="if-quote-wrapper" unselectable="on" data-guid="1689275140414" id="if_insertedNode_1689271959965" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="35526" 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="35526" 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="35526" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;agr1020 - 7/13/2023&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-35526"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Hi! I'm an undergraduate psychology student doing my first study this summer. I have very little programming experience and am trying to learn inquisit for the first time. I am not really a computer person typically so this has been a confusing experience. Does anyone have a basic "hello world" script I could look at? I can't find any online. Any help or tips would be appreciated! Thanks!&lt;a class="if-quote-goto quote-link" href="#" data-id="35526"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;You'll generally want to peruse the Programmer's Manual &lt;a href="https://www.millisecond.com/support/Inquisit%20Programmer's%20Manual.pdf"&gt;&lt;a href="https://www.millisecond.com/support/Inquisit%20Programmer's%20Manual.pdf"&gt;https://www.millisecond.com/support/Inquisit%20Programmer's%20Manual.pdf&lt;/a&gt;&lt;/a&gt; as well as work through at least one of the tutorials available in the documentation, e.g. this one: &lt;a href="https://www.millisecond.com/support/docs/current/html/tutorials/covert_attention/catutorial.htm"&gt;&lt;a href="https://www.millisecond.com/support/docs/current/html/tutorials/covert_attention/catutorial.htm"&gt;https://www.millisecond.com/support/docs/current/html/tutorials/covert_attention/catutorial.htm&lt;/a&gt;&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The basic gist of the language is very simple:&lt;br/&gt;- There are stimulus elements for different types of stimuli, e.g. &amp;lt;text&amp;gt; or &amp;lt;picture&amp;gt;. These have one or more items, and define how a stimulus looks on-screen, where it is located, and how its items are sampled (e.g. sequentially or randomly).&lt;br/&gt;- You have &amp;lt;trial&amp;gt; elements. These are your workhorses. The &amp;lt;trial&amp;gt; elements presents stimuli and collects a response to the presented stimuli. It determines when stimuli are presented during a trial, what the available responses are, which response(s) are correct, and so forth.&lt;br/&gt;- &amp;lt;block&amp;gt; elements execute trials. They determine how many trials are run, how they are sampled, etc.&lt;br/&gt;- &amp;lt;expt&amp;gt; elements execute blocks. They determine how many blocks are executed, when, how they are sampled, etc.&lt;br/&gt;&lt;br/&gt;With that in mind, a most basic script goes like this:&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;text exampletext&amp;gt;&lt;br/&gt;/ items = exampleitems&lt;br/&gt;/ select = sequence&lt;br/&gt;/ position = (50%, 40%)&lt;br/&gt;/ fontstyle = ("Arial", 10%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item exampleitems&amp;gt;&lt;br/&gt;/ 1 = "Hello"&lt;br/&gt;/ 2 = "World"&lt;br/&gt;/ 3 = "Hello World"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fixationcross&amp;gt;&lt;br/&gt;/ items = ("+")&lt;br/&gt;/ fontstyle = ("Arial", 30%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial exampletrial&amp;gt;&lt;br/&gt;/ stimulustimes = [0=text.fixationcross; 500=clearscreen, text.exampletext]&lt;br/&gt;/ validresponse = (" ") // press the space bar&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block exampleblock&amp;gt;&lt;br/&gt;/ trials = [1-3 = trial.exampletrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt exampleexpt&amp;gt;&lt;br/&gt;/ blocks = [1=block.exampleblock]&lt;br/&gt;&amp;lt;/expt&amp;gt;[/code]&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="35527"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;thank you so much this was super helpful!&lt;br/&gt;</description><pubDate>Thu, 13 Jul 2023 19:05:52 GMT</pubDate><dc:creator>agr1020</dc:creator></item><item><title>RE: Beginner questions</title><link>https://forums.millisecond.com/Topic35527.aspx</link><description>&lt;blockquote data-id="35526" class="if-quote-wrapper" unselectable="on" data-guid="1689271961369" id="if_insertedNode_1689271959965" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="35526" 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="35526" 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="35526" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;agr1020 - 7/13/2023&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-35526"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Hi! I'm an undergraduate psychology student doing my first study this summer. I have very little programming experience and am trying to learn inquisit for the first time. I am not really a computer person typically so this has been a confusing experience. Does anyone have a basic "hello world" script I could look at? I can't find any online. Any help or tips would be appreciated! Thanks!&lt;a class="if-quote-goto quote-link" href="#" data-id="35526"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;You'll generally want to peruse the Programmer's Manual &lt;a href="https://www.millisecond.com/support/Inquisit%20Programmer's%20Manual.pdf"&gt;https://www.millisecond.com/support/Inquisit%20Programmer's%20Manual.pdf&lt;/a&gt; as well as work through at least one of the tutorials available in the documentation, e.g. this one: &lt;a href="https://www.millisecond.com/support/docs/current/html/tutorials/covert_attention/catutorial.htm"&gt;https://www.millisecond.com/support/docs/current/html/tutorials/covert_attention/catutorial.htm&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The basic gist of the language is very simple:&lt;br/&gt;- There are stimulus elements for different types of stimuli, e.g. &amp;lt;text&amp;gt; or &amp;lt;picture&amp;gt;. These have one or more items, and define how a stimulus looks on-screen, where it is located, and how its items are sampled (e.g. sequentially or randomly).&lt;br/&gt;- You have &amp;lt;trial&amp;gt; elements. These are your workhorses. The &amp;lt;trial&amp;gt; elements presents stimuli and collects a response to the presented stimuli. It determines when stimuli are presented during a trial, what the available responses are, which response(s) are correct, and so forth.&lt;br/&gt;- &amp;lt;block&amp;gt; elements execute trials. They determine how many trials are run, how they are sampled, etc.&lt;br/&gt;- &amp;lt;expt&amp;gt; elements execute blocks. They determine how many blocks are executed, when, how they are sampled, etc.&lt;br/&gt;&lt;br/&gt;With that in mind, a most basic script goes like this:&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;text exampletext&amp;gt;&lt;br/&gt;/ items = exampleitems&lt;br/&gt;/ select = sequence&lt;br/&gt;/ position = (50%, 40%)&lt;br/&gt;/ fontstyle = ("Arial", 10%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;item exampleitems&amp;gt;&lt;br/&gt;/ 1 = "Hello"&lt;br/&gt;/ 2 = "World"&lt;br/&gt;/ 3 = "Hello World"&lt;br/&gt;&amp;lt;/item&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fixationcross&amp;gt;&lt;br/&gt;/ items = ("+")&lt;br/&gt;/ fontstyle = ("Arial", 30%)&lt;br/&gt;&amp;lt;/text&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial exampletrial&amp;gt;&lt;br/&gt;/ stimulustimes = [0=text.fixationcross; 500=clearscreen, text.exampletext]&lt;br/&gt;/ validresponse = (" ") // press the space bar&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block exampleblock&amp;gt;&lt;br/&gt;/ trials = [1-3 = trial.exampletrial]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt exampleexpt&amp;gt;&lt;br/&gt;/ blocks = [1=block.exampleblock]&lt;br/&gt;&amp;lt;/expt&amp;gt;[/code]&lt;br/&gt;</description><pubDate>Thu, 13 Jul 2023 18:24:40 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>