Millisecond Forums

Survey page (beginner) problem

https://forums.millisecond.com/Topic18664.aspx

By inquisit2016 - 3/17/2016

Hi,

I'm a total beginner in Inquisit and I'm looking for some advise.
Currently I'm working on a questionnaire with 60 items (sliders, one slider on each page, random order).
I chose survey pages and my question is if there is another possibility than having one slider with 60 surveypages?
If I have only one surveypage with several questions, I have two problems: How do make sure that only one question (with sliders, with likert elements it works) is on each page and how to do the randomization (is there something like "noreplace" for a surveypage?)

Thank yo very much in advance and best regards.
By Dave - 3/17/2016

A <surveypage> is a type of <trial> -- just like a <likert> element is a type of <trial> -- and you can very much use it in the same way as a <trial> or <likert>. I suspect you'll want to do something like this:

<block myblock>
/ trials = [1-4 = mypage]
</block>

<surveypage mypage>
/ stimulusframes = [1 = myquestion]
/ questions = [1=myslider]
/ showpagenumbers = false
/ showquestionnumbers = false
</surveypage>

<slider myslider>
/ range = (0,10)
/ slidersize = (50%, 5%)
/ position = (25%, 50%)
</slider>

<text myquestion>
/ items = questionitems
/ position = (50%, 40%)
/ select = noreplace
</text>

<item questionitems>
/ 1 = "Question A"
/ 2 = "Question B"
/ 3 = "Question C"
/ 4 = "Question D"
</item>


 
By inquisit2016 - 3/17/2016

Hi Dave,

thank you very much for your fast response.
This is exactly what I was looking for, it's working now!

Best regards