Group: Forum Members
Posts: 34,
Visits: 148
|
Hi, I want to have a trial where two pictures are presented side by side and then participants will be asked to choose either the left one or the right one. The pictures being presented on the left or the right side of the screen will be counterbalanced across participants. I was able to do this. But I wonder if it is possible to (1) present the pictures first and the question will show up later, so that participants can look at the pictures first without being disturbed by the question.
(2) record participants' responses so that I could easily know which picture they chose. (If I only know they chose the left picture or the right picture, I won't know if the left picture they saw was picture 1 or picture 2, due to the randomization of presentation side.)
Below is the code I have so far. Thank you so much!
<block Scholarship> / preinstructions = (Scholarship_instruction1,Scholarship_instruction2) / trials=[1=nonsexualcandidates] </block>
<page Scholarship_instruction1> ^blablabla </page>
<page Scholarship_instruction2> ^blablablablabla </page>
<surveypage nonsexualcandidates> / stimulustimes = [0 = CandidateAtext,CandidateBtext,CandidateApicture,CandidateBpicture] / questions=[1=CandidateABchoice] /showpagenumbers = false /showquestionnumbers = false / nextlabel = "continue" / finishlabel = "continue" </surveypage>
<text CandidateAtext> / items = ("Candidate A") / position = (25,10) </text>
<text CandidateBtext> / items = ("Candidate B") / position = (75,10) </text>
<picture CandidateApicture> / items= ("Non_female_1.jpg","Non_male_1.jpg") / select=CandidateAselected / position=(25,40) </picture>
<picture CandidateBpicture> / items= ("Non_female_1.jpg","Non_male_1.jpg") / select=CandidateBselected / position=(75,40) </picture>
<counter CandidateAselected> /select=replace(1-2) </counter>
<counter CandidateBselected> /select=replace(1-2) /not=(CandidateAselected) </counter>
<radiobuttons CandidateABchoice> / caption="If you have to choose between Candidate A and Candidate B, whom would you choose? " / options = ("Candidate A","Candidate B") / position = (10,70) / orientation=horizontalequal </radiobuttons>
|