Group: Administrators
Posts: 13K,
Visits: 104K
|
Here's how you can define this properly:
<radiobuttons didyousee_practice> / caption="Did you see this person at the beginning?" / required = true / options=("yes", "no") / validresponse = ("yes", "no") / correctresponse = ("no") /position = (10, 10) </radiobuttons>
<radiobuttons howmuch_practice> / caption="How certain are you? I am ...% certain" / options=("0%", "10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%") / validresponse = ("0%", "10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%") / correctresponse = ("100%") / required=true /position = (10, 30) </radiobuttons>
<text practice_item> / items = ("Person A", "Person B", "Person C") / position = (50%, 30%) </text>
<surveypage practice_item> /stimulusframes = [1 = practice_item] /questions = [1=sequence(didyousee_practice, howmuch_practice)] /itemspacing = 2 /recorddata = true /iscorrectresponse = [radiobuttons.howmuch_practice.response == "100%" && radiobuttons.didyousee_practice.response == "no"] / correctmessage = true(good, 3000) / errormessage = true(wrong, 10000) </surveypage>
<text wrong> / items = ("WRONG! This person is not the girl in the presentation at the beginning of the experiment! The correct answer is no. I'm 100% certain of my answer") </text>
<text good> /items= ("GOOD!") </text>
<block practice_item> /trials = [1-3 = practice_item] /responsemode = correct </block>
|