By AliciaShen - 4/19/2016
Dear Fellow Inquisit Users:
I am collecting responses to faces on a 1-100 point required response slider. The pictures are presented in stimulus frame. However, if participants doesn't move the slider and click next, the text turns red and the stimulus frame with the picture in it disappear. I wonder if there is a way to make the picture stay on the screen?
Here is my code:
<surveypage attractiveness> / stimulusframes = [1 = noreplacenorepeat(Faces)] / caption = "" / fontstyle = ("Verdana", -16, true, false, false, false, 5, 0) / questions = [1=attractiveness] / nextbuttonposition = (80, 80) / finishlabel = "Next" / showpagenumbers = false / showquestionnumbers = false </surveypage>
<slider attractiveness> / labels = ("Very Unattractive (0)", "Very Attractive (100)") / range = (0, 100) / defaultresponse = 50 / position = (35,60) / slidersize = (20%, 20%) / showtooltips = true / fontstyle = ("Arial", 16, true, false, false, false, 5, 1) / responsefontstyle = ("Arial", 16, false, false, false, false, 5, 1) / txcolor = (0, 0, 0) / required = true </slider>
Thanks!!
|
By Dave - 4/19/2016
When using a <picture> element via a page's /stimulusframes, no, the <picture> cannot be made to remain on-screen in case of an initial non-response to the <slider>. The solution would be to use an <image> element presented via the page's /questions attribute instead:
https://www.millisecond.com/forums/Topic15229.aspx
|
|