﻿<?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  » Running Inquisit on different mobile devices</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 09 Apr 2026 17:58:46 GMT</lastBuildDate><ttl>20</ttl><item><title>Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32243.aspx</link><description>Hello,&amp;nbsp;&lt;br/&gt;&lt;br/&gt;We would like to conduct an experiment that is also suitable for mobile devices. Our script works great on the computer, but the stimuli (pictures) are presented in a different position when using a phone or tablet. The position and size of the stimuli are actually fixed (the images should be shown in the middle of the screen). However, when using mobile devices, they are shifted to the top. &lt;br/&gt;We have defined the properties like this:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture male_4_sad&amp;gt;&lt;br/&gt;/ items = ("29FrameF (11).jpg")&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;/ size = (70%, 70%)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;Is any information missing or can we somehow control that the images are displayed at the right position even on mobile devices? &lt;br/&gt;Thanks for the help!&lt;br/&gt;&lt;br/&gt;</description><pubDate>Wed, 29 Sep 2021 06:51:31 GMT</pubDate><dc:creator>Leena</dc:creator></item><item><title>RE: Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32256.aspx</link><description>Thanks a lot!</description><pubDate>Wed, 29 Sep 2021 06:51:31 GMT</pubDate><dc:creator>Leena</dc:creator></item><item><title>RE: Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32255.aspx</link><description>&lt;blockquote data-id="32254" class="if-quote-wrapper" unselectable="on" data-guid="1632842132763" id="if_insertedNode_1632842130837" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="32254" 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="32254" 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="32254" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Leena - 9/28/2021&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-32254"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;I tried to set inputdevice=mouse in &amp;lt;defaults&amp;gt;, but unfortunately that didn't work. The problem is still there. Or do I have to change something else? &lt;a class="if-quote-goto quote-link" href="#" data-id="32254"&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;There's still something in your script that requires an input button (regardless of mouse or keyboard input), namely the instruction page.&lt;br/&gt;Thus space continues to be reserved at the bottom of the screen for this purpose. If you strip that page out, it'll be gone.&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;defaults&amp;gt;&lt;br/&gt;  /screencolor = (255, 255, 255)&lt;br/&gt;  /fontstyle = ("Arial", 2%)&lt;br/&gt;  / posttrialpause = 500&lt;br/&gt;  / canvasposition = (50%, 50%)&lt;br/&gt;  / inputdevice = mouse&lt;br/&gt;&amp;lt;/defaults&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ blocks = [1= practice]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;block practice&amp;gt;&lt;br/&gt;/ trials = [1-2=list.trialselectiontest]&lt;br/&gt;&amp;lt;/block&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;list trialselectiontest&amp;gt;&lt;br/&gt;/ items = (trial.pic1, trial.pic2)&lt;br/&gt;/ selectionmode = random&lt;br/&gt;/ itemprobabilities = (0.5, 0.5)&lt;br/&gt;/ poolsize = 2&lt;br/&gt;/ replace = false&lt;br/&gt;&amp;lt;/list&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial pic1&amp;gt;&lt;br/&gt;/ inputdevice = mouse&lt;br/&gt;/ validresponse = (lbuttondown)&lt;br/&gt;/ stimulustimes = [0=fixation; 500=erasefixation, pic_1]&lt;br/&gt;/ beginresponsetime = 0&lt;br/&gt;/ response = timeout (3500)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;trial pic2&amp;gt;&lt;br/&gt;/ inputdevice = mouse&lt;br/&gt;/ validresponse = (lbuttondown)&lt;br/&gt;/ stimulustimes = [0=fixation; 500=erasefixation, pic_2]&lt;br/&gt;/ beginresponsetime = 0&lt;br/&gt;/ response = timeout (3500)&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;************************** stimuli *****************************&lt;br/&gt;&lt;br/&gt;&amp;lt;picture pic_1&amp;gt;&lt;br/&gt;/ items = ("pic1.png")&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;/ size = (70%, 70%)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;picture pic_2&amp;gt;&lt;br/&gt;/ items = ("pic2.png")&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;/ size = (70%, 70%)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;text fixation&amp;gt;&lt;br/&gt;/ items = ("m3")&lt;br/&gt; /fontstyle = ("Arial", 10%)&lt;br/&gt; / position = (50%, 50%)&lt;br/&gt;&amp;lt;/text&amp;gt; &lt;br/&gt;&lt;br/&gt;&amp;lt;text erasefixation&amp;gt;&lt;br/&gt;/ items = ("+")&lt;br/&gt;/ txcolor = (255, 255, 255)&lt;br/&gt;/ size = (100%, 100%)&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;&amp;lt;/text&amp;gt;[/code]&lt;br/&gt;</description><pubDate>Tue, 28 Sep 2021 15:51:23 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32254.aspx</link><description>I tried to set inputdevice=mouse in &amp;lt;defaults&amp;gt;, but unfortunately that didn't work. The problem is still there. Or do I have to change something else? </description><pubDate>Tue, 28 Sep 2021 14:49:11 GMT</pubDate><dc:creator>Leena</dc:creator></item><item><title>RE: Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32253.aspx</link><description>&lt;blockquote data-id="32252" class="if-quote-wrapper" unselectable="on" data-guid="1632837395722" id="if_insertedNode_1632837394401" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="32252" 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="32252" 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="32252" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Leena - 9/28/2021&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-32252"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Here is attached a short script as an example.  I have also included a screenshot where you can see that the image is not displayed in the center, but shifted to the top.&lt;br/&gt;Thanks a lot for your help! &lt;a class="if-quote-goto quote-link" href="#" data-id="32252"&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;See &lt;a href="https://www.millisecond.com/forums/Topic32249.aspx"&gt;https://www.millisecond.com/forums/Topic32249.aspx&lt;/a&gt;</description><pubDate>Tue, 28 Sep 2021 13:57:25 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32252.aspx</link><description>Here is attached a short script as an example.  I have also included a screenshot where you can see that the image is not displayed in the center, but shifted to the top.&lt;br/&gt;Thanks a lot for your help! </description><pubDate>Tue, 28 Sep 2021 13:41:24 GMT</pubDate><dc:creator>Leena</dc:creator></item><item><title>RE: Running Inquisit on different mobile devices</title><link>https://forums.millisecond.com/Topic32244.aspx</link><description>&lt;blockquote data-id="32243" class="if-quote-wrapper" unselectable="on" data-guid="1632484761198" id="if_insertedNode_1632484760007" contenteditable="false"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="32243" 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="32243" 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="32243" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Leena - 9/24/2021&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-32243"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Hello,&amp;nbsp;&lt;br/&gt;&lt;br/&gt;We would like to conduct an experiment that is also suitable for mobile devices. Our script works great on the computer, but the stimuli (pictures) are presented in a different position when using a phone or tablet. The position and size of the stimuli are actually fixed (the images should be shown in the middle of the screen). However, when using mobile devices, they are shifted to the top. &lt;br/&gt;We have defined the properties like this:&lt;br/&gt;&lt;br/&gt;&amp;lt;picture male_4_sad&amp;gt;&lt;br/&gt;/ items = ("29FrameF (11).jpg")&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;/ size = (70%, 70%)&lt;br/&gt;/ erase = false&lt;br/&gt;&amp;lt;/picture&amp;gt;&lt;br/&gt;&lt;br/&gt;Is any information missing or can we somehow control that the images are displayed at the right position even on mobile devices? &lt;br/&gt;Thanks for the help!&lt;br/&gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="32243"&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;Provide the full code, please, including any and all files it requires to run. Please also provide a screenshot showing the supposed shift to the top.&lt;br/&gt;&lt;br/&gt;Providing the definition single &amp;lt;picture&amp;gt; element without context is not useful.</description><pubDate>Fri, 24 Sep 2021 12:00:57 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>