﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 5  » Can I remove the response bar at the bottom of my touchscreen task?</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 14 May 2026 05:15:43 GMT</lastBuildDate><ttl>20</ttl><item><title>Can I remove the response bar at the bottom of my touchscreen task?</title><link>https://forums.millisecond.com/Topic25378.aspx</link><description>Hi,&lt;br/&gt;I'm running an experiment on Inquisit Web that requires exclusively touchscreen responses (no keyboard responses). It runs beautifully on touchscreen computers, but when run on a tablet, I'm getting that annoying response bar along the bottom of the screen. My understanding from previous posts is that this occurs when no keyboard is detected, but is there any way at all of preventing this from occurring on a tablet?&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I would really appreciate some help with this. Thank you!&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Charlotte&amp;nbsp;</description><pubDate>Fri, 03 Aug 2018 08:55:51 GMT</pubDate><dc:creator>clarkm</dc:creator></item><item><title>RE: Can I remove the response bar at the bottom of my touchscreen task?</title><link>https://forums.millisecond.com/Topic25381.aspx</link><description>&lt;div data-id="25380" class="if-quote-wrapper" unselectable="on" data-guid="1533311346024"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="25380" 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="25380" 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="25380" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;clarkm - Friday, August 3, 2018&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-25380"&gt;&lt;div class="if-quote-message-margin"&gt;Hi Dave,&lt;br/&gt;&lt;br/&gt;The input device for each trial that requires a response (some trails simply time out on their own and do no require a response) is set as mouse. Same happens when they are set to touchscreen.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I've attached the script here. This is my first attempt at Inquisit so I apologise if my script is not particularly elegant :)&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Thanks,&lt;br/&gt;Charlotte&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;a class="if-quote-goto quote-link" href="#" data-id="25380"&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;When no /inputdevice is specified in a &amp;lt;trial&amp;gt; (as is the case with some of the ones that time out / require no response), then Inquisit assumes /inputdevice = keyboard as the default. This is probably the reason why you're seeing the bar.&lt;br/&gt;&lt;br/&gt;So instead of defining &lt;br/&gt;&lt;br/&gt;&amp;lt;trial prime_conditioncontrol1R&amp;gt;&lt;br/&gt;/ stimulustimes = [0 = eraser, fixation; 1000 = eraser, prime_conditioncontrol1R; 3000 = eraser]&lt;br/&gt;/ontrialbegin = [list.stimscontrol1R.nextvalue]&lt;br/&gt;/ontrialbegin = [values.relatedness = 1]&lt;br/&gt;/ontrialbegin = [values.condition = "condition1"]&lt;br/&gt;/ontrialbegin = [values.target = ""]&lt;br/&gt;/ontrialend = [values.prime = picture.prime_conditioncontrol1R.currentitem]&lt;br/&gt;/responseinterrupt = trial&lt;br/&gt;/timeout = 0 &lt;br/&gt;/branch = [trial.target_conditioncontrol1R]&lt;br/&gt;/posttrialpause = values.currentisi&lt;br/&gt;/recorddata = false&lt;br/&gt;&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;define it as &lt;br/&gt;&lt;br/&gt;&amp;lt;trial prime_conditioncontrol1R&amp;gt;&lt;br/&gt;/ stimulustimes = [0 = eraser, fixation; 1000 = eraser, prime_conditioncontrol1R; 3000 = eraser]&lt;br/&gt;/ontrialbegin = [list.stimscontrol1R.nextvalue]&lt;br/&gt;/ontrialbegin = [values.relatedness = 1]&lt;br/&gt;/ontrialbegin = [values.condition = "condition1"]&lt;br/&gt;/ontrialbegin = [values.target = ""]&lt;br/&gt;/ontrialend = [values.prime = picture.prime_conditioncontrol1R.currentitem]&lt;br/&gt;/responseinterrupt = trial&lt;br/&gt;/timeout = 0 &lt;br/&gt;/branch = [trial.target_conditioncontrol1R]&lt;br/&gt;/posttrialpause = values.currentisi&lt;br/&gt;/recorddata = false&lt;br/&gt;&lt;strong&gt;/ inputdevice = mouse&lt;br/&gt;/ validresponse = (noresponse)&lt;/strong&gt;&lt;br/&gt;&amp;lt;/trial&amp;gt;&lt;br/&gt;&lt;br/&gt;and/or set /inputdevice = mouse in the script's &amp;lt;defaults&amp;gt; element&lt;br/&gt;&lt;br/&gt;&amp;lt;defaults&amp;gt;&lt;br/&gt;&lt;strong&gt;/ inputdevice = mouse&lt;/strong&gt;&lt;br/&gt;/canvassize = (100%, 100%)&lt;br/&gt;/minimumversion = "5.0.0.0"&lt;br/&gt;/ fontstyle = ("Arial", 3%, false, false, false, false, 5, 1)&lt;br/&gt;/ screencolor = (0,0,0)&lt;br/&gt;/txbgcolor = black&lt;br/&gt;/ txcolor = white&lt;br/&gt;&amp;lt;/defaults&amp;gt;&lt;br/&gt;&lt;br/&gt;That should hopefully get rid of the bar on all devices that do not have a physical keyboard attached.&lt;br/&gt;</description><pubDate>Fri, 03 Aug 2018 08:55:51 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Can I remove the response bar at the bottom of my touchscreen task?</title><link>https://forums.millisecond.com/Topic25380.aspx</link><description>Hi Dave,&lt;br/&gt;&lt;br/&gt;The input device for each trial that requires a response (some trails simply time out on their own and do no require a response) is set as mouse. Same happens when they are set to touchscreen.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I've attached the script here. This is my first attempt at Inquisit so I apologise if my script is not particularly elegant :)&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Thanks,&lt;br/&gt;Charlotte&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Fri, 03 Aug 2018 00:42:59 GMT</pubDate><dc:creator>clarkm</dc:creator></item><item><title>RE: Can I remove the response bar at the bottom of my touchscreen task?</title><link>https://forums.millisecond.com/Topic25379.aspx</link><description>&lt;div data-id="25378" class="if-quote-wrapper" unselectable="on" data-guid="1533256562828"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="25378" 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="25378" 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="25378" title=" "&gt;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;clarkm - Thursday, August 2, 2018&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-25378"&gt;&lt;div class="if-quote-message-margin"&gt;Hi,&lt;br/&gt;I'm running an experiment on Inquisit Web that requires exclusively touchscreen responses (no keyboard responses). It runs beautifully on touchscreen computers, but when run on a tablet, I'm getting that annoying response bar along the bottom of the screen. My understanding from previous posts is that this occurs when no keyboard is detected, but is there any way at all of preventing this from occurring on a tablet?&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I would really appreciate some help with this. Thank you!&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Charlotte&amp;nbsp;&lt;a class="if-quote-goto quote-link" href="#" data-id="25378"&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;If you don't have anything in the script that expects keyboard input -- i.e. everything is set to expect input from either a mouse or a touchscreen (/inputdevice = mouse or /inputdevice = touchscreen respectively) --, you should not see the bar on a tablet. Is this the case for the script you're using?&lt;br/&gt;</description><pubDate>Thu, 02 Aug 2018 17:41:49 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>