+x+x+x+x+xHi all
I created a survey using sliders. On top, there is a picture. Participants are "forced" to answer and can't go to the next page without moving the sliders.
However, if they want to keep a slider at default position or for whatever reason they wish to go to the next page, the picture disappears. So if they want to respond and correct the "no response", the stimulus s not there. Is there a way to keep the picture or make it reappear?
Thanks much
Shlomo
Thanks much
But this is a very problematic way to go about it since I need to present the same picture across different pages and I need to select it randomly from a set of items.
I think I will stay with the picture and required- false although this is problematic.
It's not a problem at all to (a) select an item randomly, and then (b) present the same item across different pages with this approach.
Thanks much
But this is a very problematic way to go about it since I need to present the same picture across different pages and I need to select it randomly from a set of items.
I think I will stay with the picture and required- false although this is problematic.
O.K. thanks. I will do that
Shlomo
Here's an example, several variations along the same lines are possible. Basically, whatever you can pull off with <picture> elements, you can pull off with a combination of <picture> (displayed offscreen) and <image> elements as well:
<block myblock>
/ trials = [1-3 = sequence(a,b,c,d)]
</block>
<item picitems>
/ 1 = "01.jpg"
/ 1 = "02.jpg"
/ 1 = "03.jpg"
</item>
<picture mypicture>
/ items = picitems
/ position = (-20%,-20%)
/ size = (0%, 0%)
</picture>
<image myimage>
/items = ("<%picture.mypicture.currentitem%>")
/ imagesize = (50%, 40%)
</image>
<surveypage a>
/ stimulusframes = [1=mypicture]
/ caption = "Page A"
/ questions = [1=myimage; 2=slider_a]
/ showquestionnumbers = false
/ showpagenumbers = false
</surveypage>
<surveypage b>
/ caption = "Page B"
/ questions = [1=myimage; 2=slider_b]
/ showquestionnumbers = false
/ showpagenumbers = false
</surveypage>
<surveypage c>
/ caption = "Page C"
/ questions = [1=myimage; 2=slider_c]
/ showquestionnumbers = false
/ showpagenumbers = false
</surveypage>
<surveypage d>
/ caption = "Page D"
/ questions = [1=myimage; 2=slider_d]
/ showquestionnumbers = false
/ showpagenumbers = false
</surveypage>
<slider slider_a>
/ required = true
/ slidersize = (50%, 10%)
</slider>
<slider slider_b>
/ required = true
/ slidersize = (50%, 10%)
</slider>
<slider slider_c>
/ required = true
/ slidersize = (50%, 10%)
</slider>
<slider slider_d>
/ required = true
/ slidersize = (50%, 10%)
</slider>