selectionmode in the trial element


Author
Message
vz29
vz29
Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)
Group: Awaiting Activation
Posts: 72, Visits: 192
Hi,

I want to present stimuli randomly selected from two lists. However, when I run the following syntax, I receive an error message saying "could not locate element 'selectionmode'".

<trial q1_like>
/ ontrialbegin = [values.itemnumber=list.itemlist.nextvalue]
/ stimulustimes = [0=selectionmode(f_image, m_image), q1text_like, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
</trial>


I thought that this was the correct syntax based on the information available in the Inquisit help documentation:

stimulustimes attribute

The stimulustimes attribute specifies the stimulus presentation sequence for a trial in terms of time in milliseconds.

Applies to

<likert> <openended> <trial>

Syntax

/ stimulustimes = [time = stimulusname, stimulusname, ...; time = stimulusname, ...]

or

/ stimulustimes = [time = list.name]

or

/ stimulustimes = [time = selectionmode(stimulusname, stimulusname, stimulusname, ...)]


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K
As the documentation details,

Syntax

/ stimulustimes = [time = stimulusname, stimulusname, ...; time = stimulusname, ...]

or

/ stimulustimes = [time = list.name]

or

/ stimulustimes = [time = selectionmode(stimulusname, stimulusname, stimulusname, ...)]

Parameters

timeA non-negative integer specifying the time in milliseconds relative to the beginning of the sequence.
stimulusnameThe name of a stimulus defined elsewhere in the script to be presented on the specified frame.
list.nameThe name of a list that selects the stimulus to be presented on the specified frame.
selectionmodeOne of the following values:
ValueDescription
noreplaceRandomly selects without replacement which stimulus in the group to present.
replaceRandomly selects with replacement which stimulus in the group to present.
sequencePresents each stimulus in the group.
i.e., you need to *specify an actual seletionmode* as

in

/stimulustimes = [100=noreplace(a,b); ...]

Also, you cannot specify several selection modes for the same point in time, which is what your syntaxt amounts to:

/stimulustimes = [0=selectionmode(f_image, m_image), q1text_like, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]

would actually translate to

/stimulustimes = [0=noreplace(f_image, m_image), sequence(q1text_like, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder)]

which is not allowed.
vz29
vz29
Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)
Group: Awaiting Activation
Posts: 72, Visits: 192
Lovely.

Is there another option then.

Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K
Display them at slightly different times:

/stimulusframes = [1=a,b,c,d; 2=noreplace(e,f)]

BTW, I would strongly discourage using selectionmodes in /stimulustimes or /stimulusframes. 99,9% it won't give you what you actually want and there are better ways to go about things.

Edited 11 Years Ago by Dave
vz29
vz29
Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)
Group: Awaiting Activation
Posts: 72, Visits: 192
Do you have any recommendation for a better way -- preferably at a lower level (item vs. block) in the code?
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K
Depends on what exactly you want to do -- that's not possible to glean from the single code snippet you posted. Can you give a short, self-contained, runnable example?

vz29
vz29
Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)
Group: Awaiting Activation
Posts: 72, Visits: 192
Hi,

The goal of the experiment is:

(1) to present image X and obtain three different judgments about this image in sequence. Repeat so that the three judgments are made once for each image in the sets.

(2) select images randomly (with no replacement) from two sets (f_stim and m_stim).

Below is a script that achieves aim 1 for the f_stim set, but I'd like it to randomly select from both f_stim and m_stim.



**************
<defaults>
/ fontstyle = ("Gill Sans", 2.78%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0)
/ screencolor = (255,255,255)
/ txcolor = (0, 0, 0)
/ pretrialpause = 000
/ posttrialpause = 000
/ endlock = true("Please tell the experimenter that you are finished with this portion of the experiment.")
/ inputdevice = keyboard
</defaults>
<data>
/ format = tab
/ columns = [date time build subject blocknum blockcode trialnum trialcode response correct latency stimulusitem stimulusitem stimulusitem]
/ labels = true
</data>
------------------------------------------------------------------------------------
*** EXPT CONDITIONS ****
------------------------------------------------------------------------------------
<expt 1 of 1>
/ preinstructions = (intro0, rate)
/ blocks = [1-4 = rate; 5 = demo]
/ subjects = (1 of 1)
/ postinstructions = (end)
</expt>
------------------------------------------------------------------------------------
*** RATE ****
------------------------------------------------------------------------------------
               ------------------------------------------------------------------------------------
               *** BLOCK ****
               ------------------------------------------------------------------------------------
<block rate>
/ preinstructions = (rate)
/ trials =[1-50=sequence(q1_like, q2_self, q3_gender)]
</block>
               ------------------------------------------------------------------------------------
               *** TRIALS ****
               ------------------------------------------------------------------------------------
<trial q1_like>
/ ontrialbegin = [values.itemnumber=list.itemlist.nextvalue]
/ stimulustimes = [0=f_stim, q1text_like, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
/ trialdata = [f_stim]
</trial>
<text q1text_like>
/ items = ("Do you like this stimuli?")
/ position = (50%,15%)
/ fontstyle = ("Gill Sans", 6.11%, false, false, false, false, 5, 0)
/ txcolor = (75, 0, 130)
</text>
<trial q2_self>
/ stimulustimes = [0=f_stim, q2text_self, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
/ trialdata = [f_stim]
</trial>
<text q2text_self>
/ items = ("Is this stimuli personally relevant to you?")
/ position = (50%,15%)
/ fontstyle = ("Gill Sans", 6.11%, false, false, false, false, 5, 0)
/ txcolor = (0, 128, 64)
</text>
<trial q3_gender>
/ stimulustimes = [0=f_stim, q3text_gender, leftmale_reminder, rightfemale_reminder, leftA_reminder, rightL_reminder, 
leftboth_reminder, rightneither_reminder, leftF_reminder, rightH_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "F" "H" "L")
/ trialdata = [f_stim]
</trial>
<text q3text_gender>
/ items = ("Is this stimuli relevant to men, women, both, or neither?")
/ position = (50%,15%)
/ fontstyle = ("Gill Sans", 6.11%, false, false, false, false, 5, 0)
/ txcolor = (128, 64, 0)
</text>
<text leftyes_reminder>
/ items = ("If 'YES',")
/ position = (20%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text leftA_reminder>
/ items = ("press the 'A' key")
/ position = (20%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text rightno_reminder>
/ items = ("If 'NO',")
/ position = (80%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text rightL_reminder>
/ items = ("press the 'L' key")
/ position = (80%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text leftmale_reminder>
/ items = ("If 'MEN',")
/ position = (20%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text leftboth_reminder>
/ items = ("If 'BOTH',")
/ position = (40%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text leftF_reminder>
/ items = ("press the 'F' key")
/ position = (40%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text rightfemale_reminder>
/ items = ("If 'WOMEN',")
/ position = (80%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text rightneither_reminder>
/ items = ("If 'NEITHER',")
/ position = (60%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
<text rightH_reminder>
/ items = ("press the 'H' key")
/ position = (60%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>
               ------------------------------------------------------------------------------------
               *** ITEMS ****
               ------------------------------------------------------------------------------------
<values>
/ itemnumber = 1
</values>
<list itemlist>
/ resetinterval = 0
/ items = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 
121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200)
/ selectionmode = random
</list>
<picture f_stim>
/ select = values.itemnumber
/ items = f_pics
/ size = (50%, 50%)
/ position = (50, 50)
</picture>
<item f_pics>
/1 = "Participant 5_-screenshot_1.jpg"
/2 = "Participant 5_-screenshot_2.jpg"
/3 = "Participant 5_-screenshot_3.jpg"
/4 = "Participant 5_-screenshot_4.jpg"
/5 = "Participant 5_-screenshot_5.jpg"
/6 = "Participant 5_-screenshot_6.jpg"
/7 = "Participant 5_-screenshot_7.jpg"
/8 = "Participant 5_-screenshot_8.jpg"
/9 = "Participant 5_-screenshot_9.jpg"
/10 = "Participant 5_-screenshot_10.jpg"
/11 = "Participant 5_-screenshot_11.jpg"
/12 = "Participant 5_-screenshot_12.jpg"
/13 = "Participant 5_-screenshot_13.jpg"
/14 = "Participant 5_-screenshot_14.jpg"
/15 = "Participant 5_-screenshot_15.jpg"
/16 = "Participant 5_-screenshot_16.jpg"
/17 = "Participant 5_-screenshot_17.jpg"
/18 = "Participant 5_-screenshot_18.jpg"
/19 = "Participant 5_-screenshot_19.jpg"
/20 = "Participant 5_-screenshot_20.jpg"
/21 = "Participant 6_-screenshot_1.jpg"
/22 = "Participant 6_-screenshot_2.jpg"
/23 = "Participant 6_-screenshot_3.jpg"
/24 = "Participant 6_-screenshot_4.jpg"
/25 = "Participant 6_-screenshot_5.jpg"
/26 = "Participant 6_-screenshot_6.jpg"
/27 = "Participant 6_-screenshot_7.jpg"
/28 = "Participant 6_-screenshot_8.jpg"
/29 = "Participant 6_-screenshot_9.jpg"
/30 = "Participant 6_-screenshot_10.jpg"
/31 = "Participant 6_-screenshot_11.jpg"
/32 = "Participant 6_-screenshot_12.jpg"
/33 = "Participant 6_-screenshot_13.jpg"
/34 = "Participant 6_-screenshot_14.jpg"
/35 = "Participant 6_-screenshot_15.jpg"
/36 = "Participant 6_-screenshot_16.jpg"
/37 = "Participant 6_-screenshot_17.jpg"
/38 = "Participant 6_-screenshot_18.jpg"
/39 = "Participant 6_-screenshot_19.jpg"
/40 = "Participant 6_-screenshot_20.jpg"
/41 = "Participant 9_-screenshot_1.jpg"
/42 = "Participant 9_-screenshot_2.jpg"
/43 = "Participant 9_-screenshot_3.jpg"
/44 = "Participant 9_-screenshot_4.jpg"
/45 = "Participant 9_-screenshot_5.jpg"
/46 = "Participant 9_-screenshot_6.jpg"
/47 = "Participant 9_-screenshot_7.jpg"
/48 = "Participant 9_-screenshot_8.jpg"
/49 = "Participant 9_-screenshot_9.jpg"
/50 = "Participant 9_-screenshot_10.jpg"
/51 = "Participant 9_-screenshot_11.jpg"
/52 = "Participant 9_-screenshot_12.jpg"
/53 = "Participant 9_-screenshot_13.jpg"
/54 = "Participant 9_-screenshot_14.jpg"
/55 = "Participant 9_-screenshot_15.jpg"
/56 = "Participant 9_-screenshot_16.jpg"
/57 = "Participant 9_-screenshot_17.jpg"
/58 = "Participant 9_-screenshot_18.jpg"
/59 = "Participant 9_-screenshot_19.jpg"
/60 = "Participant 9_-screenshot_20.jpg"
/61 = "Participant 11_-screenshot_1.jpg"
/62 = "Participant 11_-screenshot_2.jpg"
/63 = "Participant 11_-screenshot_3.jpg"
/64 = "Participant 11_-screenshot_4.jpg"
/65 = "Participant 11_-screenshot_5.jpg"
/66 = "Participant 11_-screenshot_6.jpg"
/67 = "Participant 11_-screenshot_7.jpg"
/68 = "Participant 11_-screenshot_8.jpg"
/69 = "Participant 11_-screenshot_9.jpg"
/70 = "Participant 11_-screenshot_10.jpg"
/71 = "Participant 11_-screenshot_11.jpg"
/72 = "Participant 11_-screenshot_12.jpg"
/73 = "Participant 11_-screenshot_13.jpg"
/74 = "Participant 11_-screenshot_14.jpg"
/75 = "Participant 11_-screenshot_15.jpg"
/76 = "Participant 11_-screenshot_16.jpg"
/77 = "Participant 11_-screenshot_17.jpg"
/78 = "Participant 11_-screenshot_18.jpg"
/79 = "Participant 11_-screenshot_19.jpg"
/80 = "Participant 11_-screenshot_20.jpg"
/81 = "Participant 18_-screenshot_1.jpg"
/82 = "Participant 18_-screenshot_2.jpg"
/83 = "Participant 18_-screenshot_3.jpg"
/84 = "Participant 18_-screenshot_4.jpg"
/85 = "Participant 18_-screenshot_5.jpg"
/86 = "Participant 18_-screenshot_6.jpg"
/87 = "Participant 18_-screenshot_7.jpg"
/88 = "Participant 18_-screenshot_8.jpg"
/89 = "Participant 18_-screenshot_9.jpg"
/90 = "Participant 18_-screenshot_10.jpg"
/91 = "Participant 18_-screenshot_11.jpg"
/92 = "Participant 18_-screenshot_12.jpg"
/93 = "Participant 18_-screenshot_13.jpg"
/94 = "Participant 18_-screenshot_14.jpg"
/95 = "Participant 18_-screenshot_15.jpg"
/96 = "Participant 18_-screenshot_16.jpg"
/97 = "Participant 18_-screenshot_17.jpg"
/98 = "Participant 18_-screenshot_18.jpg"
/99 = "Participant 18_-screenshot_19.jpg"
/100 = "Participant 18_-screenshot_20.jpg"
/101 = "Participant 20_-screenshot_1.jpg"
/102 = "Participant 20_-screenshot_2.jpg"
/103 = "Participant 20_-screenshot_3.jpg"
/104 = "Participant 20_-screenshot_4.jpg"
/105 = "Participant 20_-screenshot_5.jpg"
/106 = "Participant 20_-screenshot_6.jpg"
/107 = "Participant 20_-screenshot_7.jpg"
/108 = "Participant 20_-screenshot_8.jpg"
/109 = "Participant 20_-screenshot_9.jpg"
/110 = "Participant 20_-screenshot_10.jpg"
/111 = "Participant 20_-screenshot_11.jpg"
/112 = "Participant 20_-screenshot_12.jpg"
/113 = "Participant 20_-screenshot_13.jpg"
/114 = "Participant 20_-screenshot_14.jpg"
/115 = "Participant 20_-screenshot_15.jpg"
/116 = "Participant 20_-screenshot_16.jpg"
/117 = "Participant 20_-screenshot_17.jpg"
/118 = "Participant 20_-screenshot_18.jpg"
/119 = "Participant 20_-screenshot_19.jpg"
/120 = "Participant 20_-screenshot_20.jpg"
/121 = "Participant 21_-screenshot_1.jpg"
/122 = "Participant 21_-screenshot_2.jpg"
/123 = "Participant 21_-screenshot_3.jpg"
/124 = "Participant 21_-screenshot_4.jpg"
/125 = "Participant 21_-screenshot_5.jpg"
/126 = "Participant 21_-screenshot_6.jpg"
/127 = "Participant 21_-screenshot_7.jpg"
/128 = "Participant 21_-screenshot_8.jpg"
/129 = "Participant 21_-screenshot_9.jpg"
/130 = "Participant 21_-screenshot_10.jpg"
/131 = "Participant 21_-screenshot_11.jpg"
/132 = "Participant 21_-screenshot_12.jpg"
/133 = "Participant 21_-screenshot_13.jpg"
/134 = "Participant 21_-screenshot_14.jpg"
/135 = "Participant 21_-screenshot_15.jpg"
/136 = "Participant 21_-screenshot_16.jpg"
/137 = "Participant 21_-screenshot_17.jpg"
/138 = "Participant 21_-screenshot_18.jpg"
/139 = "Participant 21_-screenshot_19.jpg"
/140 = "Participant 21_-screenshot_20.jpg"
/141 = "Participant 22_-screenshot_1.jpg"
/142 = "Participant 22_-screenshot_2.jpg"
/143 = "Participant 22_-screenshot_3.jpg"
/144 = "Participant 22_-screenshot_4.jpg"
/145 = "Participant 22_-screenshot_5.jpg"
/146 = "Participant 22_-screenshot_6.jpg"
/147 = "Participant 22_-screenshot_7.jpg"
/148 = "Participant 22_-screenshot_8.jpg"
/149 = "Participant 22_-screenshot_9.jpg"
/150 = "Participant 22_-screenshot_10.jpg"
/151 = "Participant 22_-screenshot_11.jpg"
/152 = "Participant 22_-screenshot_12.jpg"
/153 = "Participant 22_-screenshot_13.jpg"
/154 = "Participant 22_-screenshot_14.jpg"
/155 = "Participant 22_-screenshot_15.jpg"
/156 = "Participant 22_-screenshot_16.jpg"
/157 = "Participant 22_-screenshot_17.jpg"
/158 = "Participant 22_-screenshot_18.jpg"
/159 = "Participant 22_-screenshot_19.jpg"
/160 = "Participant 22_-screenshot_20.jpg"
/161 = "Participant 23_-screenshot_1.jpg"
/162 = "Participant 23_-screenshot_2.jpg"
/163 = "Participant 23_-screenshot_3.jpg"
/164 = "Participant 23_-screenshot_4.jpg"
/165 = "Participant 23_-screenshot_5.jpg"
/166 = "Participant 23_-screenshot_6.jpg"
/167 = "Participant 23_-screenshot_7.jpg"
/168 = "Participant 23_-screenshot_8.jpg"
/169 = "Participant 23_-screenshot_9.jpg"
/170 = "Participant 23_-screenshot_10.jpg"
/171 = "Participant 23_-screenshot_11.jpg"
/172 = "Participant 23_-screenshot_12.jpg"
/173 = "Participant 23_-screenshot_13.jpg"
/174 = "Participant 23_-screenshot_14.jpg"
/175 = "Participant 23_-screenshot_15.jpg"
/176 = "Participant 23_-screenshot_16.jpg"
/177 = "Participant 23_-screenshot_17.jpg"
/178 = "Participant 23_-screenshot_18.jpg"
/179 = "Participant 23_-screenshot_19.jpg"
/180 = "Participant 23_-screenshot_20.jpg"
/181 = "Participant 24_-screenshot_1.jpg"
/182 = "Participant 24_-screenshot_2.jpg"
/183 = "Participant 24_-screenshot_3.jpg"
/184 = "Participant 24_-screenshot_4.jpg"
/185 = "Participant 24_-screenshot_5.jpg"
/186 = "Participant 24_-screenshot_6.jpg"
/187 = "Participant 24_-screenshot_7.jpg"
/188 = "Participant 24_-screenshot_8.jpg"
/189 = "Participant 24_-screenshot_9.jpg"
/190 = "Participant 24_-screenshot_10.jpg"
/191 = "Participant 24_-screenshot_11.jpg"
/192 = "Participant 24_-screenshot_12.jpg"
/193 = "Participant 24_-screenshot_13.jpg"
/194 = "Participant 24_-screenshot_14.jpg"
/195 = "Participant 24_-screenshot_15.jpg"
/196 = "Participant 24_-screenshot_16.jpg"
/197 = "Participant 24_-screenshot_17.jpg"
/198 = "Participant 24_-screenshot_18.jpg"
/199 = "Participant 24_-screenshot_19.jpg"
/200 = "Participant 24_-screenshot_20.jpg"
/201 = "Participant 28_-screenshot_1.jpg"
/202 = "Participant 28_-screenshot_2.jpg"
/203 = "Participant 28_-screenshot_3.jpg"
/204 = "Participant 28_-screenshot_4.jpg"
/205 = "Participant 28_-screenshot_5.jpg"
/206 = "Participant 28_-screenshot_6.jpg"
/207 = "Participant 28_-screenshot_7.jpg"
/208 = "Participant 28_-screenshot_8.jpg"
/209 = "Participant 28_-screenshot_9.jpg"
/210 = "Participant 28_-screenshot_10.jpg"
/211 = "Participant 28_-screenshot_11.jpg"
/212 = "Participant 28_-screenshot_12.jpg"
/213 = "Participant 28_-screenshot_13.jpg"
/214 = "Participant 28_-screenshot_14.jpg"
/215 = "Participant 28_-screenshot_15.jpg"
/216 = "Participant 28_-screenshot_16.jpg"
/217 = "Participant 28_-screenshot_17.jpg"
/218 = "Participant 28_-screenshot_18.jpg"
/219 = "Participant 28_-screenshot_19.jpg"
/220 = "Participant 28_-screenshot_20.jpg"
</item>
<picture m_stim>
/ select = values.itemnumber
/ select = noreplace
/ items = m_pics
/ size = (50%, 50%)
/ position = (50, 50)
</picture>
<item m_pics>
/1 = "Participant 2_-screenshot_1.jpg"
/2 = "Participant 2_-screenshot_2.jpg"
/3 = "Participant 2_-screenshot_3.jpg"
/4 = "Participant 2_-screenshot_4.jpg"
/5 = "Participant 2_-screenshot_5.jpg"
/6 = "Participant 2_-screenshot_6.jpg"
/7 = "Participant 2_-screenshot_7.jpg"
/8 = "Participant 2_-screenshot_8.jpg"
/9 = "Participant 2_-screenshot_9.jpg"
/10 = "Participant 2_-screenshot_10.jpg"
/11 = "Participant 2_-screenshot_11.jpg"
/12 = "Participant 2_-screenshot_12.jpg"
/13 = "Participant 2_-screenshot_13.jpg"
/14 = "Participant 2_-screenshot_14.jpg"
/15 = "Participant 2_-screenshot_15.jpg"
/16 = "Participant 2_-screenshot_16.jpg"
/17 = "Participant 2_-screenshot_17.jpg"
/18 = "Participant 2_-screenshot_18.jpg"
/19 = "Participant 2_-screenshot_19.jpg"
/20 = "Participant 2_-screenshot_20.jpg"
/21 = "Participant 3_-screenshot_1.jpg"
/22 = "Participant 3_-screenshot_2.jpg"
/23 = "Participant 3_-screenshot_3.jpg"
/24 = "Participant 3_-screenshot_4.jpg"
/25 = "Participant 3_-screenshot_5.jpg"
/26 = "Participant 3_-screenshot_6.jpg"
/27 = "Participant 3_-screenshot_7.jpg"
/28 = "Participant 3_-screenshot_8.jpg"
/29 = "Participant 3_-screenshot_9.jpg"
/30 = "Participant 3_-screenshot_10.jpg"
/31 = "Participant 3_-screenshot_11.jpg"
/32 = "Participant 3_-screenshot_12.jpg"
/33 = "Participant 3_-screenshot_13.jpg"
/34 = "Participant 3_-screenshot_14.jpg"
/35 = "Participant 3_-screenshot_15.jpg"
/36 = "Participant 3_-screenshot_16.jpg"
/37 = "Participant 3_-screenshot_17.jpg"
/38 = "Participant 3_-screenshot_18.jpg"
/39 = "Participant 3_-screenshot_19.jpg"
/40 = "Participant 3_-screenshot_20.jpg"
/41 = "Participant 4_-screenshot_1.jpg"
/42 = "Participant 4_-screenshot_2.jpg"
/43 = "Participant 4_-screenshot_3.jpg"
/44 = "Participant 4_-screenshot_4.jpg"
/45 = "Participant 4_-screenshot_5.jpg"
/46 = "Participant 4_-screenshot_6.jpg"
/47 = "Participant 4_-screenshot_7.jpg"
/48 = "Participant 4_-screenshot_8.jpg"
/49 = "Participant 4_-screenshot_9.jpg"
/50 = "Participant 4_-screenshot_10.jpg"
/51 = "Participant 4_-screenshot_11.jpg"
/52 = "Participant 4_-screenshot_12.jpg"
/53 = "Participant 4_-screenshot_13.jpg"
/54 = "Participant 4_-screenshot_14.jpg"
/55 = "Participant 4_-screenshot_15.jpg"
/56 = "Participant 4_-screenshot_16.jpg"
/57 = "Participant 4_-screenshot_17.jpg"
/58 = "Participant 4_-screenshot_18.jpg"
/59 = "Participant 4_-screenshot_19.jpg"
/60 = "Participant 4_-screenshot_20.jpg"
/61 = "Participant 8_-screenshot_1.jpg"
/62 = "Participant 8_-screenshot_2.jpg"
/63 = "Participant 8_-screenshot_3.jpg"
/64 = "Participant 8_-screenshot_4.jpg"
/65 = "Participant 8_-screenshot_5.jpg"
/66 = "Participant 8_-screenshot_6.jpg"
/67 = "Participant 8_-screenshot_7.jpg"
/68 = "Participant 8_-screenshot_8.jpg"
/69 = "Participant 8_-screenshot_9.jpg"
/70 = "Participant 8_-screenshot_10.jpg"
/71 = "Participant 8_-screenshot_11.jpg"
/72 = "Participant 8_-screenshot_12.jpg"
/73 = "Participant 8_-screenshot_13.jpg"
/74 = "Participant 8_-screenshot_14.jpg"
/75 = "Participant 8_-screenshot_15.jpg"
/76 = "Participant 8_-screenshot_16.jpg"
/77 = "Participant 8_-screenshot_17.jpg"
/78 = "Participant 8_-screenshot_18.jpg"
/79 = "Participant 8_-screenshot_19.jpg"
/80 = "Participant 8_-screenshot_20.jpg"
/81 = "Participant 13_-screenshot_1.jpg"
/82 = "Participant 13_-screenshot_2.jpg"
/83 = "Participant 13_-screenshot_3.jpg"
/84 = "Participant 13_-screenshot_4.jpg"
/85 = "Participant 13_-screenshot_5.jpg"
/86 = "Participant 13_-screenshot_6.jpg"
/87 = "Participant 13_-screenshot_7.jpg"
/88 = "Participant 13_-screenshot_8.jpg"
/89 = "Participant 13_-screenshot_9.jpg"
/90 = "Participant 13_-screenshot_10.jpg"
/91 = "Participant 13_-screenshot_11.jpg"
/92 = "Participant 13_-screenshot_12.jpg"
/93 = "Participant 13_-screenshot_13.jpg"
/94 = "Participant 13_-screenshot_14.jpg"
/95 = "Participant 13_-screenshot_15.jpg"
/96 = "Participant 13_-screenshot_16.jpg"
/97 = "Participant 13_-screenshot_17.jpg"
/98 = "Participant 13_-screenshot_18.jpg"
/99 = "Participant 13_-screenshot_19.jpg"
/100 = "Participant 13_-screenshot_20.jpg"
/101 = "Participant 14_-screenshot_1.jpg"
/102 = "Participant 14_-screenshot_2.jpg"
/103 = "Participant 14_-screenshot_3.jpg"
/104 = "Participant 14_-screenshot_4.jpg"
/105 = "Participant 14_-screenshot_5.jpg"
/106 = "Participant 14_-screenshot_6.jpg"
/107 = "Participant 14_-screenshot_7.jpg"
/108 = "Participant 14_-screenshot_8.jpg"
/109 = "Participant 14_-screenshot_9.jpg"
/110 = "Participant 14_-screenshot_10.jpg"
/111 = "Participant 14_-screenshot_11.jpg"
/112 = "Participant 14_-screenshot_12.jpg"
/113 = "Participant 14_-screenshot_13.jpg"
/114 = "Participant 14_-screenshot_14.jpg"
/115 = "Participant 14_-screenshot_15.jpg"
/116 = "Participant 14_-screenshot_16.jpg"
/117 = "Participant 14_-screenshot_17.jpg"
/118 = "Participant 14_-screenshot_18.jpg"
/119 = "Participant 14_-screenshot_19.jpg"
/120 = "Participant 14_-screenshot_20.jpg"
/121 = "Participant 15_-screenshot_1.jpg"
/122 = "Participant 15_-screenshot_2.jpg"
/123 = "Participant 15_-screenshot_3.jpg"
/124 = "Participant 15_-screenshot_4.jpg"
/125 = "Participant 15_-screenshot_5.jpg"
/126 = "Participant 15_-screenshot_6.jpg"
/127 = "Participant 15_-screenshot_7.jpg"
/128 = "Participant 15_-screenshot_8.jpg"
/129 = "Participant 15_-screenshot_9.jpg"
/130 = "Participant 15_-screenshot_10.jpg"
/131 = "Participant 15_-screenshot_11.jpg"
/132 = "Participant 15_-screenshot_12.jpg"
/133 = "Participant 15_-screenshot_13.jpg"
/134 = "Participant 15_-screenshot_14.jpg"
/135 = "Participant 15_-screenshot_15.jpg"
/136 = "Participant 15_-screenshot_16.jpg"
/137 = "Participant 15_-screenshot_17.jpg"
/138 = "Participant 15_-screenshot_18.jpg"
/139 = "Participant 15_-screenshot_19.jpg"
/140 = "Participant 15_-screenshot_20.jpg"
/141 = "Participant 16_-screenshot_1.jpg"
/142 = "Participant 16_-screenshot_2.jpg"
/143 = "Participant 16_-screenshot_3.jpg"
/144 = "Participant 16_-screenshot_4.jpg"
/145 = "Participant 16_-screenshot_5.jpg"
/146 = "Participant 16_-screenshot_6.jpg"
/147 = "Participant 16_-screenshot_7.jpg"
/148 = "Participant 16_-screenshot_8.jpg"
/149 = "Participant 16_-screenshot_9.jpg"
/150 = "Participant 16_-screenshot_10.jpg"
/151 = "Participant 16_-screenshot_11.jpg"
/152 = "Participant 16_-screenshot_12.jpg"
/153 = "Participant 16_-screenshot_13.jpg"
/154 = "Participant 16_-screenshot_14.jpg"
/155 = "Participant 16_-screenshot_15.jpg"
/156 = "Participant 16_-screenshot_16.jpg"
/157 = "Participant 16_-screenshot_17.jpg"
/158 = "Participant 16_-screenshot_18.jpg"
/159 = "Participant 16_-screenshot_19.jpg"
/160 = "Participant 16_-screenshot_20.jpg"
/161 = "Participant 26_-screenshot_1.jpg"
/162 = "Participant 26_-screenshot_2.jpg"
/163 = "Participant 26_-screenshot_3.jpg"
/164 = "Participant 26_-screenshot_4.jpg"
/165 = "Participant 26_-screenshot_5.jpg"
/166 = "Participant 26_-screenshot_6.jpg"
/167 = "Participant 26_-screenshot_7.jpg"
/168 = "Participant 26_-screenshot_8.jpg"
/169 = "Participant 26_-screenshot_9.jpg"
/170 = "Participant 26_-screenshot_10.jpg"
/171 = "Participant 26_-screenshot_11.jpg"
/172 = "Participant 26_-screenshot_12.jpg"
/173 = "Participant 26_-screenshot_13.jpg"
/174 = "Participant 26_-screenshot_14.jpg"
/175 = "Participant 26_-screenshot_15.jpg"
/176 = "Participant 26_-screenshot_16.jpg"
/177 = "Participant 26_-screenshot_17.jpg"
/178 = "Participant 26_-screenshot_18.jpg"
/179 = "Participant 26_-screenshot_19.jpg"
/180 = "Participant 26_-screenshot_20.jpg"
/181 = "Participant 27_-screenshot_1.jpg"
/182 = "Participant 27_-screenshot_2.jpg"
/183 = "Participant 27_-screenshot_3.jpg"
/184 = "Participant 27_-screenshot_4.jpg"
/185 = "Participant 27_-screenshot_5.jpg"
/186 = "Participant 27_-screenshot_6.jpg"
/187 = "Participant 27_-screenshot_7.jpg"
/188 = "Participant 27_-screenshot_8.jpg"
/189 = "Participant 27_-screenshot_9.jpg"
/190 = "Participant 27_-screenshot_10.jpg"
/191 = "Participant 27_-screenshot_11.jpg"
/192 = "Participant 27_-screenshot_12.jpg"
/193 = "Participant 27_-screenshot_13.jpg"
/194 = "Participant 27_-screenshot_14.jpg"
/195 = "Participant 27_-screenshot_15.jpg"
/196 = "Participant 27_-screenshot_16.jpg"
/197 = "Participant 27_-screenshot_17.jpg"
/198 = "Participant 27_-screenshot_18.jpg"
/199 = "Participant 27_-screenshot_19.jpg"
/200 = "Participant 27_-screenshot_20.jpg"
/201 = "Participant 30_-screenshot_1.jpg"
/202 = "Participant 30_-screenshot_2.jpg"
/203 = "Participant 30_-screenshot_3.jpg"
/204 = "Participant 30_-screenshot_4.jpg"
/205 = "Participant 30_-screenshot_5.jpg"
/206 = "Participant 30_-screenshot_6.jpg"
/207 = "Participant 30_-screenshot_7.jpg"
/208 = "Participant 30_-screenshot_8.jpg"
/209 = "Participant 30_-screenshot_9.jpg"
/210 = "Participant 30_-screenshot_10.jpg"
/211 = "Participant 30_-screenshot_11.jpg"
/212 = "Participant 30_-screenshot_12.jpg"
/213 = "Participant 30_-screenshot_13.jpg"
/214 = "Participant 30_-screenshot_14.jpg"
/215 = "Participant 30_-screenshot_15.jpg"
/216 = "Participant 30_-screenshot_16.jpg"
/217 = "Participant 30_-screenshot_17.jpg"
/218 = "Participant 30_-screenshot_18.jpg"
/219 = "Participant 30_-screenshot_19.jpg"
/220 = "Participant 30_-screenshot_20.jpg"
</item>
------------------------------------------------------------------------------------
*** DEMO ****
------------------------------------------------------------------------------------
               ------------------------------------------------------------------------------------
               *** BLOCK ****
               ------------------------------------------------------------------------------------
<survey demo>
/ pages = [1 = demographics1; 2= demographics2]
/ responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0)
/ itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0)
/ itemspacing = 10%
/ showpagenumbers = false
/ finishlabel = "Next"
</survey>
               ------------------------------------------------------------------------------------
               *** PAGES ****
               ------------------------------------------------------------------------------------
<surveypage demographics1>
/ caption = "Please answer the following demographic questions"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=age; 2=sex] 
</surveypage>
<surveypage demographics2>
/ caption = "Please answer the following demographic questions (continued)"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=educ; 2=race; 3=occupation; 4 =income] 
</surveypage>
<dropdown age>
/ caption = "What is your age?"
/ options = ("18", "19", "20", "21", "22", "23", "24", "25", "26", "27","28", "29",
                              "30", "31", "32", "33", "34", "35", "36", "37","38", "39",
                              "40", "41", "42", "43", "44", "45", "46", "47","48", "49",
                              "50", "51", "52", "53", "54", "55", "56", "57","58", "59",
                              "60", "61", "62", "63", "64", "65", "66", "67","68", "69",
                              "70", "71", "72", "73", "74", "75", "76", "77","78", "79",
                              "80", "81", "82", "83", "84", "85", "86", "87","88", "89")
/ optionvalues = ("18", "19", "20", "21", "22", "23", "24", "25", "26", "27","28", "29",
                              "30", "31", "32", "33", "34", "35", "36", "37","38", "39",
                              "40", "41", "42", "43", "44", "45", "46", "47","48", "49",
                              "50", "51", "52", "53", "54", "55", "56", "57","58", "59",
                              "60", "61", "62", "63", "64", "65", "66", "67","68", "69",
                              "70", "71", "72", "73", "74", "75", "76", "77","78", "79",
                              "80", "81", "82", "83", "84", "85", "86", "87","88", "89")
</dropdown>
<dropdown sex>
/ caption = "What is your sex?"
/ options = ("female", "male")
/ optionvalues = ("0", "1")
</dropdown>
<dropdown educ>
/ caption = "What is the highest level of education that you have completed?"
/ options = ("Some highschool", "Highschool", "Some college", 
"2-year college degree", "4-year college degree", "Masters", 
"Professional degree (JD, MD)", "Doctorate")
/ optionvalues = ("1", "2", "3", "4", "5", "6", "7", "8")
</dropdown>
<checkboxes race>
/ caption = "With what race/ethnicity do you identify? (Select ALL that apply)"
/ options = ("White", "Hispanic or Latino", "Asian", "Black/African American", "Native Hawaiian/Pacific Islander", "American Indian/Alaska Native")
/ other = "Other"
</checkboxes>
<textbox occupation>
/ caption = "What is your occupation?"
</textbox>
<dropdown income>
/ caption = "What is your HOUSEHOLD income (approximately)?"
/ options = ("<10,000", "10-001-20,000", "20,001-30,000", "30,001-40,000", "40,001-50,000", "50,001-60,000", 
"60,001-70,000", "70,001-80,000", "80,001-90,000", "90,001-100,000","100,001-110,000", "110,001-120,000",
"120,001-130,000", "130,001-140,000", "140,001-150,000", "150,000-200,000", ">$200,001")
/ optionvalues = ("0," "1", "2", "3", "4", "5", "6", "7","8", "9", "10", "11", "12", "13", "14", "15", "16")
</dropdown>
------------------------------------------------------------------------------------
*** INSTRUCTIONS ****
------------------------------------------------------------------------------------
<page intro0>
Welcome!
^^In this study, we will  present you with images and ask you about your feelings and attitudes towards each.
^^We will then ask you a few questions about yourself (e.g., your age, your gender).
^^The entire study will take about 45 minutes.  
</page>
<page rate>
We will now show you the images -- one at a time.  
^^You will be asked questions about your feelings and thoughts for each image presented.
^^There are no right and wrong answers. So, just answer truthfully. Go with your gut reaction.
</page>
<page demo>
We will now ask you a few questions to learn more about you (e.g., your age, gender, etc.).
^^Please answer truthfully.
</page>
<page end>
Thank you for taking part in our study!
</page>



Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K
You have several options, here's two:

#1: You may not need two sets of stimuli. Why not have one <picture stim> element with all 400+ items (male and female) and then sample from the full item set?

#2: Otherwise you can set up separate <trial> elements for the two sets (f and m), i.e.

<trial f_q1_like>
/ stimulustimes = [0=f_stim, ...]
[...]
/ branch = [trial.f_q2_self]
</trial>

<trial f_q2_self>
/ stimulustimes = [0=f_stim, ...]
[...]
/ branch = [trial.f_q3_gender]
</trial>

<trial f_q3_gender>
/ stimulustimes = [0=f_stim, ...]
[...]
</trial>

and

<trial m_q1_like>
/ stimulustimes = [0=m_stim, ...]
[...]
/ branch = [trial.m_q2_self]
</trial>

<trial m_q2_self>
/ stimulustimes = [0=m_stim, ...]
[...]
/ branch = [trial.m_q3_gender]
</trial>

<trial q3_gender>
/ stimulustimes = [0=f_stim, ...]
[...]
</trial>

and then simply sample from them at the <block> level in whatever way you please:

<block rate>
/ trials =[1-100=noreplace(f_q1_like, m_q1_like)]
[...]
</block>


vz29
vz29
Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)
Group: Awaiting Activation
Posts: 72, Visits: 192
thanks. I'm going to go with option 2. I want to analyze the results separately for f and m images and that information would be lost if they are both sampled from the same list (given that the file name doesn't have the gender information).


vz29
vz29
Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)Distinguished Member (5K reputation)
Group: Awaiting Activation
Posts: 72, Visits: 192
I'm still encountering two problems using the code pasted below.

(1) the same image is presented more than once.

(2) do I need to change the script dealing with the value and itemlist?


*********

<defaults>
/ fontstyle = ("Gill Sans", 2.78%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0)
/ screencolor = (255,255,255)
/ txcolor = (0, 0, 0)
/ pretrialpause = 000
/ posttrialpause = 000
/ endlock = true("Please tell the experimenter that you are finished with this portion of the experiment.")
/ inputdevice = keyboard
</defaults>

<data>
/ format = tab
/ columns = [date time build subject blocknum blockcode trialnum trialcode response correct latency stimulusitem stimulusitem stimulusitem]
/ labels = true
</data>


------------------------------------------------------------------------------------
*** EXPT CONDITIONS ****
------------------------------------------------------------------------------------

<expt 1 of 1>
/ preinstructions = (intro0, rate)
/ blocks = [1-11 = rate; 12 = demo]
/ subjects = (1 of 1)
/ postinstructions = (end)
</expt>




------------------------------------------------------------------------------------
*** RATE ****
------------------------------------------------------------------------------------

               ------------------------------------------------------------------------------------
               *** BLOCK ****
               ------------------------------------------------------------------------------------


<block rate>
/ preinstructions = (rate)
/ trials =[1-40=noreplace(q1_like_f, q1_like_m)]
</block>



               ------------------------------------------------------------------------------------
               *** TRIALS ****
               ------------------------------------------------------------------------------------


<trial q1_like_f>
/ ontrialbegin = [values.itemnumber=list.itemlist.nextvalue]
/ stimulustimes = [0=f_stim, q1text_like, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
/ branch = [trial.q2_self_f]
/ trialdata = [f_stim]
</trial>

<trial q2_self_f>
/ stimulustimes = [0=f_stim, q2text_self, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
/ branch = [trial.q3_gender_f]
/ trialdata = [f_stim]
</trial>

<trial q3_gender_f>
/ stimulustimes = [0=f_stim, q3text_gender, leftmale_reminder, rightfemale_reminder, leftA_reminder, rightL_reminder, 
leftboth_reminder, rightneither_reminder, leftF_reminder, rightH_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "F" "H" "L")
/ trialdata = [f_stim]
</trial>


<trial q1_like_m>
/ ontrialbegin = [values.itemnumber=list.itemlist.nextvalue]
/ stimulustimes = [0=m_stim, q1text_like, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
/ branch = [trial.q2_self_m]
/ trialdata = [m_stim]
</trial>

<trial q2_self_m>
/ stimulustimes = [0=m_stim, q2text_self, leftyes_reminder, rightno_reminder, leftA_reminder, rightL_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "L")
/ branch = [trial.q3_gender_m]
/ trialdata = [m_stim]
</trial>

<trial q3_gender_m>
/ stimulustimes = [0=m_stim, q3text_gender, leftmale_reminder, rightfemale_reminder, leftA_reminder, rightL_reminder, 
leftboth_reminder, rightneither_reminder, leftF_reminder, rightH_reminder]
/ inputdevice = keyboard
/ validresponse = ("A" "F" "H" "L")
/ trialdata = [m_stim]
</trial>


               ------------------------------------------------------------------------------------
               *** TEXT FOR TRIALS ****
               ------------------------------------------------------------------------------------



<text q1text_like>
/ items = ("Do you like this stimuli?")
/ position = (50%,15%)
/ fontstyle = ("Gill Sans", 6.11%, false, false, false, false, 5, 0)
/ txcolor = (75, 0, 130)
</text>

<text q2text_self>
/ items = ("Is this stimuli personally relevant to you?")
/ position = (50%,15%)
/ fontstyle = ("Gill Sans", 6.11%, false, false, false, false, 5, 0)
/ txcolor = (0, 128, 64)
</text>

<text q3text_gender>
/ items = ("Is this stimuli relevant to men, women, both, or neither?")
/ position = (50%,15%)
/ fontstyle = ("Gill Sans", 6.11%, false, false, false, false, 5, 0)
/ txcolor = (128, 64, 0)
</text>

<text leftyes_reminder>
/ items = ("If 'YES',")
/ position = (20%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text leftA_reminder>
/ items = ("press the 'A' key")
/ position = (20%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text rightno_reminder>
/ items = ("If 'NO',")
/ position = (80%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text rightL_reminder>
/ items = ("press the 'L' key")
/ position = (80%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text leftmale_reminder>
/ items = ("If 'MEN',")
/ position = (20%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text leftboth_reminder>
/ items = ("If 'BOTH',")
/ position = (40%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text leftF_reminder>
/ items = ("press the 'F' key")
/ position = (40%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text rightfemale_reminder>
/ items = ("If 'WOMEN',")
/ position = (80%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text rightneither_reminder>
/ items = ("If 'NEITHER',")
/ position = (60%, 85%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

<text rightH_reminder>
/ items = ("press the 'H' key")
/ position = (60%, 90%)
/ fontstyle = ("Gill Sans", 4.00%, false, false, false, false, 5, 0)
/ txcolor = (0, 0, 0) 
</text>

               ------------------------------------------------------------------------------------
               *** ITEMS ****
               ------------------------------------------------------------------------------------


<values>
/ itemnumber = 1
</values>

<list itemlist>
/ resetinterval = 0
/ items = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 
121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 
221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240,
241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260,
261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280,
281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300,
301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320,
321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340,
341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360,
361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380,
381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400,
401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420,
421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440)
/ selectionmode = random
</list>

<picture f_stim>
/ select = values.itemnumber
/ items = f_pics
/ size = (50%, 50%)
/ position = (50, 50)
</picture>

<item f_pics>
/1 = "Participant 5_-screenshot_1.jpg"
/2 = "Participant 5_-screenshot_2.jpg"
/3 = "Participant 5_-screenshot_3.jpg"
/4 = "Participant 5_-screenshot_4.jpg"
/5 = "Participant 5_-screenshot_5.jpg"
/6 = "Participant 5_-screenshot_6.jpg"
/7 = "Participant 5_-screenshot_7.jpg"
/8 = "Participant 5_-screenshot_8.jpg"
/9 = "Participant 5_-screenshot_9.jpg"
/10 = "Participant 5_-screenshot_10.jpg"
/11 = "Participant 5_-screenshot_11.jpg"
/12 = "Participant 5_-screenshot_12.jpg"
/13 = "Participant 5_-screenshot_13.jpg"
/14 = "Participant 5_-screenshot_14.jpg"
/15 = "Participant 5_-screenshot_15.jpg"
/16 = "Participant 5_-screenshot_16.jpg"
/17 = "Participant 5_-screenshot_17.jpg"
/18 = "Participant 5_-screenshot_18.jpg"
/19 = "Participant 5_-screenshot_19.jpg"
/20 = "Participant 5_-screenshot_20.jpg"
/21 = "Participant 6_-screenshot_1.jpg"
/22 = "Participant 6_-screenshot_2.jpg"
/23 = "Participant 6_-screenshot_3.jpg"
/24 = "Participant 6_-screenshot_4.jpg"
/25 = "Participant 6_-screenshot_5.jpg"
/26 = "Participant 6_-screenshot_6.jpg"
/27 = "Participant 6_-screenshot_7.jpg"
/28 = "Participant 6_-screenshot_8.jpg"
/29 = "Participant 6_-screenshot_9.jpg"
/30 = "Participant 6_-screenshot_10.jpg"
/31 = "Participant 6_-screenshot_11.jpg"
/32 = "Participant 6_-screenshot_12.jpg"
/33 = "Participant 6_-screenshot_13.jpg"
/34 = "Participant 6_-screenshot_14.jpg"
/35 = "Participant 6_-screenshot_15.jpg"
/36 = "Participant 6_-screenshot_16.jpg"
/37 = "Participant 6_-screenshot_17.jpg"
/38 = "Participant 6_-screenshot_18.jpg"
/39 = "Participant 6_-screenshot_19.jpg"
/40 = "Participant 6_-screenshot_20.jpg"
/41 = "Participant 9_-screenshot_1.jpg"
/42 = "Participant 9_-screenshot_2.jpg"
/43 = "Participant 9_-screenshot_3.jpg"
/44 = "Participant 9_-screenshot_4.jpg"
/45 = "Participant 9_-screenshot_5.jpg"
/46 = "Participant 9_-screenshot_6.jpg"
/47 = "Participant 9_-screenshot_7.jpg"
/48 = "Participant 9_-screenshot_8.jpg"
/49 = "Participant 9_-screenshot_9.jpg"
/50 = "Participant 9_-screenshot_10.jpg"
/51 = "Participant 9_-screenshot_11.jpg"
/52 = "Participant 9_-screenshot_12.jpg"
/53 = "Participant 9_-screenshot_13.jpg"
/54 = "Participant 9_-screenshot_14.jpg"
/55 = "Participant 9_-screenshot_15.jpg"
/56 = "Participant 9_-screenshot_16.jpg"
/57 = "Participant 9_-screenshot_17.jpg"
/58 = "Participant 9_-screenshot_18.jpg"
/59 = "Participant 9_-screenshot_19.jpg"
/60 = "Participant 9_-screenshot_20.jpg"
/61 = "Participant 11_-screenshot_1.jpg"
/62 = "Participant 11_-screenshot_2.jpg"
/63 = "Participant 11_-screenshot_3.jpg"
/64 = "Participant 11_-screenshot_4.jpg"
/65 = "Participant 11_-screenshot_5.jpg"
/66 = "Participant 11_-screenshot_6.jpg"
/67 = "Participant 11_-screenshot_7.jpg"
/68 = "Participant 11_-screenshot_8.jpg"
/69 = "Participant 11_-screenshot_9.jpg"
/70 = "Participant 11_-screenshot_10.jpg"
/71 = "Participant 11_-screenshot_11.jpg"
/72 = "Participant 11_-screenshot_12.jpg"
/73 = "Participant 11_-screenshot_13.jpg"
/74 = "Participant 11_-screenshot_14.jpg"
/75 = "Participant 11_-screenshot_15.jpg"
/76 = "Participant 11_-screenshot_16.jpg"
/77 = "Participant 11_-screenshot_17.jpg"
/78 = "Participant 11_-screenshot_18.jpg"
/79 = "Participant 11_-screenshot_19.jpg"
/80 = "Participant 11_-screenshot_20.jpg"
/81 = "Participant 18_-screenshot_1.jpg"
/82 = "Participant 18_-screenshot_2.jpg"
/83 = "Participant 18_-screenshot_3.jpg"
/84 = "Participant 18_-screenshot_4.jpg"
/85 = "Participant 18_-screenshot_5.jpg"
/86 = "Participant 18_-screenshot_6.jpg"
/87 = "Participant 18_-screenshot_7.jpg"
/88 = "Participant 18_-screenshot_8.jpg"
/89 = "Participant 18_-screenshot_9.jpg"
/90 = "Participant 18_-screenshot_10.jpg"
/91 = "Participant 18_-screenshot_11.jpg"
/92 = "Participant 18_-screenshot_12.jpg"
/93 = "Participant 18_-screenshot_13.jpg"
/94 = "Participant 18_-screenshot_14.jpg"
/95 = "Participant 18_-screenshot_15.jpg"
/96 = "Participant 18_-screenshot_16.jpg"
/97 = "Participant 18_-screenshot_17.jpg"
/98 = "Participant 18_-screenshot_18.jpg"
/99 = "Participant 18_-screenshot_19.jpg"
/100 = "Participant 18_-screenshot_20.jpg"
/101 = "Participant 20_-screenshot_1.jpg"
/102 = "Participant 20_-screenshot_2.jpg"
/103 = "Participant 20_-screenshot_3.jpg"
/104 = "Participant 20_-screenshot_4.jpg"
/105 = "Participant 20_-screenshot_5.jpg"
/106 = "Participant 20_-screenshot_6.jpg"
/107 = "Participant 20_-screenshot_7.jpg"
/108 = "Participant 20_-screenshot_8.jpg"
/109 = "Participant 20_-screenshot_9.jpg"
/110 = "Participant 20_-screenshot_10.jpg"
/111 = "Participant 20_-screenshot_11.jpg"
/112 = "Participant 20_-screenshot_12.jpg"
/113 = "Participant 20_-screenshot_13.jpg"
/114 = "Participant 20_-screenshot_14.jpg"
/115 = "Participant 20_-screenshot_15.jpg"
/116 = "Participant 20_-screenshot_16.jpg"
/117 = "Participant 20_-screenshot_17.jpg"
/118 = "Participant 20_-screenshot_18.jpg"
/119 = "Participant 20_-screenshot_19.jpg"
/120 = "Participant 20_-screenshot_20.jpg"
/121 = "Participant 21_-screenshot_1.jpg"
/122 = "Participant 21_-screenshot_2.jpg"
/123 = "Participant 21_-screenshot_3.jpg"
/124 = "Participant 21_-screenshot_4.jpg"
/125 = "Participant 21_-screenshot_5.jpg"
/126 = "Participant 21_-screenshot_6.jpg"
/127 = "Participant 21_-screenshot_7.jpg"
/128 = "Participant 21_-screenshot_8.jpg"
/129 = "Participant 21_-screenshot_9.jpg"
/130 = "Participant 21_-screenshot_10.jpg"
/131 = "Participant 21_-screenshot_11.jpg"
/132 = "Participant 21_-screenshot_12.jpg"
/133 = "Participant 21_-screenshot_13.jpg"
/134 = "Participant 21_-screenshot_14.jpg"
/135 = "Participant 21_-screenshot_15.jpg"
/136 = "Participant 21_-screenshot_16.jpg"
/137 = "Participant 21_-screenshot_17.jpg"
/138 = "Participant 21_-screenshot_18.jpg"
/139 = "Participant 21_-screenshot_19.jpg"
/140 = "Participant 21_-screenshot_20.jpg"
/141 = "Participant 22_-screenshot_1.jpg"
/142 = "Participant 22_-screenshot_2.jpg"
/143 = "Participant 22_-screenshot_3.jpg"
/144 = "Participant 22_-screenshot_4.jpg"
/145 = "Participant 22_-screenshot_5.jpg"
/146 = "Participant 22_-screenshot_6.jpg"
/147 = "Participant 22_-screenshot_7.jpg"
/148 = "Participant 22_-screenshot_8.jpg"
/149 = "Participant 22_-screenshot_9.jpg"
/150 = "Participant 22_-screenshot_10.jpg"
/151 = "Participant 22_-screenshot_11.jpg"
/152 = "Participant 22_-screenshot_12.jpg"
/153 = "Participant 22_-screenshot_13.jpg"
/154 = "Participant 22_-screenshot_14.jpg"
/155 = "Participant 22_-screenshot_15.jpg"
/156 = "Participant 22_-screenshot_16.jpg"
/157 = "Participant 22_-screenshot_17.jpg"
/158 = "Participant 22_-screenshot_18.jpg"
/159 = "Participant 22_-screenshot_19.jpg"
/160 = "Participant 22_-screenshot_20.jpg"
/161 = "Participant 23_-screenshot_1.jpg"
/162 = "Participant 23_-screenshot_2.jpg"
/163 = "Participant 23_-screenshot_3.jpg"
/164 = "Participant 23_-screenshot_4.jpg"
/165 = "Participant 23_-screenshot_5.jpg"
/166 = "Participant 23_-screenshot_6.jpg"
/167 = "Participant 23_-screenshot_7.jpg"
/168 = "Participant 23_-screenshot_8.jpg"
/169 = "Participant 23_-screenshot_9.jpg"
/170 = "Participant 23_-screenshot_10.jpg"
/171 = "Participant 23_-screenshot_11.jpg"
/172 = "Participant 23_-screenshot_12.jpg"
/173 = "Participant 23_-screenshot_13.jpg"
/174 = "Participant 23_-screenshot_14.jpg"
/175 = "Participant 23_-screenshot_15.jpg"
/176 = "Participant 23_-screenshot_16.jpg"
/177 = "Participant 23_-screenshot_17.jpg"
/178 = "Participant 23_-screenshot_18.jpg"
/179 = "Participant 23_-screenshot_19.jpg"
/180 = "Participant 23_-screenshot_20.jpg"
/181 = "Participant 24_-screenshot_1.jpg"
/182 = "Participant 24_-screenshot_2.jpg"
/183 = "Participant 24_-screenshot_3.jpg"
/184 = "Participant 24_-screenshot_4.jpg"
/185 = "Participant 24_-screenshot_5.jpg"
/186 = "Participant 24_-screenshot_6.jpg"
/187 = "Participant 24_-screenshot_7.jpg"
/188 = "Participant 24_-screenshot_8.jpg"
/189 = "Participant 24_-screenshot_9.jpg"
/190 = "Participant 24_-screenshot_10.jpg"
/191 = "Participant 24_-screenshot_11.jpg"
/192 = "Participant 24_-screenshot_12.jpg"
/193 = "Participant 24_-screenshot_13.jpg"
/194 = "Participant 24_-screenshot_14.jpg"
/195 = "Participant 24_-screenshot_15.jpg"
/196 = "Participant 24_-screenshot_16.jpg"
/197 = "Participant 24_-screenshot_17.jpg"
/198 = "Participant 24_-screenshot_18.jpg"
/199 = "Participant 24_-screenshot_19.jpg"
/200 = "Participant 24_-screenshot_20.jpg"
/201 = "Participant 28_-screenshot_1.jpg"
/202 = "Participant 28_-screenshot_2.jpg"
/203 = "Participant 28_-screenshot_3.jpg"
/204 = "Participant 28_-screenshot_4.jpg"
/205 = "Participant 28_-screenshot_5.jpg"
/206 = "Participant 28_-screenshot_6.jpg"
/207 = "Participant 28_-screenshot_7.jpg"
/208 = "Participant 28_-screenshot_8.jpg"
/209 = "Participant 28_-screenshot_9.jpg"
/210 = "Participant 28_-screenshot_10.jpg"
/211 = "Participant 28_-screenshot_11.jpg"
/212 = "Participant 28_-screenshot_12.jpg"
/213 = "Participant 28_-screenshot_13.jpg"
/214 = "Participant 28_-screenshot_14.jpg"
/215 = "Participant 28_-screenshot_15.jpg"
/216 = "Participant 28_-screenshot_16.jpg"
/217 = "Participant 28_-screenshot_17.jpg"
/218 = "Participant 28_-screenshot_18.jpg"
/219 = "Participant 28_-screenshot_19.jpg"
/220 = "Participant 28_-screenshot_20.jpg"
</item>

<picture m_stim>
/ select = values.itemnumber
/ select = noreplace
/ items = m_pics
/ size = (50%, 50%)
/ position = (50, 50)
</picture>

<item m_pics>
/1 = "Participant 2_-screenshot_1.jpg"
/2 = "Participant 2_-screenshot_2.jpg"
/3 = "Participant 2_-screenshot_3.jpg"
/4 = "Participant 2_-screenshot_4.jpg"
/5 = "Participant 2_-screenshot_5.jpg"
/6 = "Participant 2_-screenshot_6.jpg"
/7 = "Participant 2_-screenshot_7.jpg"
/8 = "Participant 2_-screenshot_8.jpg"
/9 = "Participant 2_-screenshot_9.jpg"
/10 = "Participant 2_-screenshot_10.jpg"
/11 = "Participant 2_-screenshot_11.jpg"
/12 = "Participant 2_-screenshot_12.jpg"
/13 = "Participant 2_-screenshot_13.jpg"
/14 = "Participant 2_-screenshot_14.jpg"
/15 = "Participant 2_-screenshot_15.jpg"
/16 = "Participant 2_-screenshot_16.jpg"
/17 = "Participant 2_-screenshot_17.jpg"
/18 = "Participant 2_-screenshot_18.jpg"
/19 = "Participant 2_-screenshot_19.jpg"
/20 = "Participant 2_-screenshot_20.jpg"
/21 = "Participant 3_-screenshot_1.jpg"
/22 = "Participant 3_-screenshot_2.jpg"
/23 = "Participant 3_-screenshot_3.jpg"
/24 = "Participant 3_-screenshot_4.jpg"
/25 = "Participant 3_-screenshot_5.jpg"
/26 = "Participant 3_-screenshot_6.jpg"
/27 = "Participant 3_-screenshot_7.jpg"
/28 = "Participant 3_-screenshot_8.jpg"
/29 = "Participant 3_-screenshot_9.jpg"
/30 = "Participant 3_-screenshot_10.jpg"
/31 = "Participant 3_-screenshot_11.jpg"
/32 = "Participant 3_-screenshot_12.jpg"
/33 = "Participant 3_-screenshot_13.jpg"
/34 = "Participant 3_-screenshot_14.jpg"
/35 = "Participant 3_-screenshot_15.jpg"
/36 = "Participant 3_-screenshot_16.jpg"
/37 = "Participant 3_-screenshot_17.jpg"
/38 = "Participant 3_-screenshot_18.jpg"
/39 = "Participant 3_-screenshot_19.jpg"
/40 = "Participant 3_-screenshot_20.jpg"
/41 = "Participant 4_-screenshot_1.jpg"
/42 = "Participant 4_-screenshot_2.jpg"
/43 = "Participant 4_-screenshot_3.jpg"
/44 = "Participant 4_-screenshot_4.jpg"
/45 = "Participant 4_-screenshot_5.jpg"
/46 = "Participant 4_-screenshot_6.jpg"
/47 = "Participant 4_-screenshot_7.jpg"
/48 = "Participant 4_-screenshot_8.jpg"
/49 = "Participant 4_-screenshot_9.jpg"
/50 = "Participant 4_-screenshot_10.jpg"
/51 = "Participant 4_-screenshot_11.jpg"
/52 = "Participant 4_-screenshot_12.jpg"
/53 = "Participant 4_-screenshot_13.jpg"
/54 = "Participant 4_-screenshot_14.jpg"
/55 = "Participant 4_-screenshot_15.jpg"
/56 = "Participant 4_-screenshot_16.jpg"
/57 = "Participant 4_-screenshot_17.jpg"
/58 = "Participant 4_-screenshot_18.jpg"
/59 = "Participant 4_-screenshot_19.jpg"
/60 = "Participant 4_-screenshot_20.jpg"
/61 = "Participant 8_-screenshot_1.jpg"
/62 = "Participant 8_-screenshot_2.jpg"
/63 = "Participant 8_-screenshot_3.jpg"
/64 = "Participant 8_-screenshot_4.jpg"
/65 = "Participant 8_-screenshot_5.jpg"
/66 = "Participant 8_-screenshot_6.jpg"
/67 = "Participant 8_-screenshot_7.jpg"
/68 = "Participant 8_-screenshot_8.jpg"
/69 = "Participant 8_-screenshot_9.jpg"
/70 = "Participant 8_-screenshot_10.jpg"
/71 = "Participant 8_-screenshot_11.jpg"
/72 = "Participant 8_-screenshot_12.jpg"
/73 = "Participant 8_-screenshot_13.jpg"
/74 = "Participant 8_-screenshot_14.jpg"
/75 = "Participant 8_-screenshot_15.jpg"
/76 = "Participant 8_-screenshot_16.jpg"
/77 = "Participant 8_-screenshot_17.jpg"
/78 = "Participant 8_-screenshot_18.jpg"
/79 = "Participant 8_-screenshot_19.jpg"
/80 = "Participant 8_-screenshot_20.jpg"
/81 = "Participant 13_-screenshot_1.jpg"
/82 = "Participant 13_-screenshot_2.jpg"
/83 = "Participant 13_-screenshot_3.jpg"
/84 = "Participant 13_-screenshot_4.jpg"
/85 = "Participant 13_-screenshot_5.jpg"
/86 = "Participant 13_-screenshot_6.jpg"
/87 = "Participant 13_-screenshot_7.jpg"
/88 = "Participant 13_-screenshot_8.jpg"
/89 = "Participant 13_-screenshot_9.jpg"
/90 = "Participant 13_-screenshot_10.jpg"
/91 = "Participant 13_-screenshot_11.jpg"
/92 = "Participant 13_-screenshot_12.jpg"
/93 = "Participant 13_-screenshot_13.jpg"
/94 = "Participant 13_-screenshot_14.jpg"
/95 = "Participant 13_-screenshot_15.jpg"
/96 = "Participant 13_-screenshot_16.jpg"
/97 = "Participant 13_-screenshot_17.jpg"
/98 = "Participant 13_-screenshot_18.jpg"
/99 = "Participant 13_-screenshot_19.jpg"
/100 = "Participant 13_-screenshot_20.jpg"
/101 = "Participant 14_-screenshot_1.jpg"
/102 = "Participant 14_-screenshot_2.jpg"
/103 = "Participant 14_-screenshot_3.jpg"
/104 = "Participant 14_-screenshot_4.jpg"
/105 = "Participant 14_-screenshot_5.jpg"
/106 = "Participant 14_-screenshot_6.jpg"
/107 = "Participant 14_-screenshot_7.jpg"
/108 = "Participant 14_-screenshot_8.jpg"
/109 = "Participant 14_-screenshot_9.jpg"
/110 = "Participant 14_-screenshot_10.jpg"
/111 = "Participant 14_-screenshot_11.jpg"
/112 = "Participant 14_-screenshot_12.jpg"
/113 = "Participant 14_-screenshot_13.jpg"
/114 = "Participant 14_-screenshot_14.jpg"
/115 = "Participant 14_-screenshot_15.jpg"
/116 = "Participant 14_-screenshot_16.jpg"
/117 = "Participant 14_-screenshot_17.jpg"
/118 = "Participant 14_-screenshot_18.jpg"
/119 = "Participant 14_-screenshot_19.jpg"
/120 = "Participant 14_-screenshot_20.jpg"
/121 = "Participant 15_-screenshot_1.jpg"
/122 = "Participant 15_-screenshot_2.jpg"
/123 = "Participant 15_-screenshot_3.jpg"
/124 = "Participant 15_-screenshot_4.jpg"
/125 = "Participant 15_-screenshot_5.jpg"
/126 = "Participant 15_-screenshot_6.jpg"
/127 = "Participant 15_-screenshot_7.jpg"
/128 = "Participant 15_-screenshot_8.jpg"
/129 = "Participant 15_-screenshot_9.jpg"
/130 = "Participant 15_-screenshot_10.jpg"
/131 = "Participant 15_-screenshot_11.jpg"
/132 = "Participant 15_-screenshot_12.jpg"
/133 = "Participant 15_-screenshot_13.jpg"
/134 = "Participant 15_-screenshot_14.jpg"
/135 = "Participant 15_-screenshot_15.jpg"
/136 = "Participant 15_-screenshot_16.jpg"
/137 = "Participant 15_-screenshot_17.jpg"
/138 = "Participant 15_-screenshot_18.jpg"
/139 = "Participant 15_-screenshot_19.jpg"
/140 = "Participant 15_-screenshot_20.jpg"
/141 = "Participant 16_-screenshot_1.jpg"
/142 = "Participant 16_-screenshot_2.jpg"
/143 = "Participant 16_-screenshot_3.jpg"
/144 = "Participant 16_-screenshot_4.jpg"
/145 = "Participant 16_-screenshot_5.jpg"
/146 = "Participant 16_-screenshot_6.jpg"
/147 = "Participant 16_-screenshot_7.jpg"
/148 = "Participant 16_-screenshot_8.jpg"
/149 = "Participant 16_-screenshot_9.jpg"
/150 = "Participant 16_-screenshot_10.jpg"
/151 = "Participant 16_-screenshot_11.jpg"
/152 = "Participant 16_-screenshot_12.jpg"
/153 = "Participant 16_-screenshot_13.jpg"
/154 = "Participant 16_-screenshot_14.jpg"
/155 = "Participant 16_-screenshot_15.jpg"
/156 = "Participant 16_-screenshot_16.jpg"
/157 = "Participant 16_-screenshot_17.jpg"
/158 = "Participant 16_-screenshot_18.jpg"
/159 = "Participant 16_-screenshot_19.jpg"
/160 = "Participant 16_-screenshot_20.jpg"
/161 = "Participant 26_-screenshot_1.jpg"
/162 = "Participant 26_-screenshot_2.jpg"
/163 = "Participant 26_-screenshot_3.jpg"
/164 = "Participant 26_-screenshot_4.jpg"
/165 = "Participant 26_-screenshot_5.jpg"
/166 = "Participant 26_-screenshot_6.jpg"
/167 = "Participant 26_-screenshot_7.jpg"
/168 = "Participant 26_-screenshot_8.jpg"
/169 = "Participant 26_-screenshot_9.jpg"
/170 = "Participant 26_-screenshot_10.jpg"
/171 = "Participant 26_-screenshot_11.jpg"
/172 = "Participant 26_-screenshot_12.jpg"
/173 = "Participant 26_-screenshot_13.jpg"
/174 = "Participant 26_-screenshot_14.jpg"
/175 = "Participant 26_-screenshot_15.jpg"
/176 = "Participant 26_-screenshot_16.jpg"
/177 = "Participant 26_-screenshot_17.jpg"
/178 = "Participant 26_-screenshot_18.jpg"
/179 = "Participant 26_-screenshot_19.jpg"
/180 = "Participant 26_-screenshot_20.jpg"
/181 = "Participant 27_-screenshot_1.jpg"
/182 = "Participant 27_-screenshot_2.jpg"
/183 = "Participant 27_-screenshot_3.jpg"
/184 = "Participant 27_-screenshot_4.jpg"
/185 = "Participant 27_-screenshot_5.jpg"
/186 = "Participant 27_-screenshot_6.jpg"
/187 = "Participant 27_-screenshot_7.jpg"
/188 = "Participant 27_-screenshot_8.jpg"
/189 = "Participant 27_-screenshot_9.jpg"
/190 = "Participant 27_-screenshot_10.jpg"
/191 = "Participant 27_-screenshot_11.jpg"
/192 = "Participant 27_-screenshot_12.jpg"
/193 = "Participant 27_-screenshot_13.jpg"
/194 = "Participant 27_-screenshot_14.jpg"
/195 = "Participant 27_-screenshot_15.jpg"
/196 = "Participant 27_-screenshot_16.jpg"
/197 = "Participant 27_-screenshot_17.jpg"
/198 = "Participant 27_-screenshot_18.jpg"
/199 = "Participant 27_-screenshot_19.jpg"
/200 = "Participant 27_-screenshot_20.jpg"
/201 = "Participant 30_-screenshot_1.jpg"
/202 = "Participant 30_-screenshot_2.jpg"
/203 = "Participant 30_-screenshot_3.jpg"
/204 = "Participant 30_-screenshot_4.jpg"
/205 = "Participant 30_-screenshot_5.jpg"
/206 = "Participant 30_-screenshot_6.jpg"
/207 = "Participant 30_-screenshot_7.jpg"
/208 = "Participant 30_-screenshot_8.jpg"
/209 = "Participant 30_-screenshot_9.jpg"
/210 = "Participant 30_-screenshot_10.jpg"
/211 = "Participant 30_-screenshot_11.jpg"
/212 = "Participant 30_-screenshot_12.jpg"
/213 = "Participant 30_-screenshot_13.jpg"
/214 = "Participant 30_-screenshot_14.jpg"
/215 = "Participant 30_-screenshot_15.jpg"
/216 = "Participant 30_-screenshot_16.jpg"
/217 = "Participant 30_-screenshot_17.jpg"
/218 = "Participant 30_-screenshot_18.jpg"
/219 = "Participant 30_-screenshot_19.jpg"
/220 = "Participant 30_-screenshot_20.jpg"
</item>


------------------------------------------------------------------------------------
*** DEMO ****
------------------------------------------------------------------------------------

               ------------------------------------------------------------------------------------
               *** BLOCK ****
               ------------------------------------------------------------------------------------

<survey demo>
/ pages = [1 = demographics1; 2= demographics2]
/ responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0)
/ itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0)
/ itemspacing = 10%
/ showpagenumbers = false
/ finishlabel = "Next"
</survey>

               ------------------------------------------------------------------------------------
               *** PAGES ****
               ------------------------------------------------------------------------------------

<surveypage demographics1>
/ caption = "Please answer the following demographic questions"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=age; 2=sex] 
</surveypage>

<surveypage demographics2>
/ caption = "Please answer the following demographic questions (continued)"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=educ; 2=race; 3=occupation; 4 =income] 
</surveypage>

<dropdown age>
/ caption = "What is your age?"
/ options = ("18", "19", "20", "21", "22", "23", "24", "25", "26", "27","28", "29",
                              "30", "31", "32", "33", "34", "35", "36", "37","38", "39",
                              "40", "41", "42", "43", "44", "45", "46", "47","48", "49",
                              "50", "51", "52", "53", "54", "55", "56", "57","58", "59",
                              "60", "61", "62", "63", "64", "65", "66", "67","68", "69",
                              "70", "71", "72", "73", "74", "75", "76", "77","78", "79",
                              "80", "81", "82", "83", "84", "85", "86", "87","88", "89")
/ optionvalues = ("18", "19", "20", "21", "22", "23", "24", "25", "26", "27","28", "29",
                              "30", "31", "32", "33", "34", "35", "36", "37","38", "39",
                              "40", "41", "42", "43", "44", "45", "46", "47","48", "49",
                              "50", "51", "52", "53", "54", "55", "56", "57","58", "59",
                              "60", "61", "62", "63", "64", "65", "66", "67","68", "69",
                              "70", "71", "72", "73", "74", "75", "76", "77","78", "79",
                              "80", "81", "82", "83", "84", "85", "86", "87","88", "89")
</dropdown>

<dropdown sex>
/ caption = "What is your sex?"
/ options = ("female", "male")
/ optionvalues = ("0", "1")
</dropdown>

<dropdown educ>
/ caption = "What is the highest level of education that you have completed?"
/ options = ("Some highschool", "Highschool", "Some college", 
"2-year college degree", "4-year college degree", "Masters", 
"Professional degree (JD, MD)", "Doctorate")
/ optionvalues = ("1", "2", "3", "4", "5", "6", "7", "8")
</dropdown>

<checkboxes race>
/ caption = "With what race/ethnicity do you identify? (Select ALL that apply)"
/ options = ("White", "Hispanic or Latino", "Asian", "Black/African American", "Native Hawaiian/Pacific Islander", "American Indian/Alaska Native")
/ other = "Other"
</checkboxes>

<textbox occupation>
/ caption = "What is your occupation?"
</textbox>

<dropdown income>
/ caption = "What is your HOUSEHOLD income (approximately)?"
/ options = ("<10,000", "10-001-20,000", "20,001-30,000", "30,001-40,000", "40,001-50,000", "50,001-60,000", 
"60,001-70,000", "70,001-80,000", "80,001-90,000", "90,001-100,000","100,001-110,000", "110,001-120,000",
"120,001-130,000", "130,001-140,000", "140,001-150,000", "150,000-200,000", ">$200,001")
/ optionvalues = ("0," "1", "2", "3", "4", "5", "6", "7","8", "9", "10", "11", "12", "13", "14", "15", "16")
</dropdown>



------------------------------------------------------------------------------------
*** INSTRUCTIONS ****
------------------------------------------------------------------------------------


<page intro0>
Welcome!
^^In this study, we will  present you with images and ask you about your feelings and attitudes towards each.
^^We will then ask you a few questions about yourself (e.g., your age, your gender).
^^The entire study will take about 45 minutes.  
</page>


<page rate>
We will now show you the images -- one at a time.  

^^You will be asked questions about your feelings and thoughts for each image presented.

^^There are no right and wrong answers. So, just answer truthfully. Go with your gut reaction.
</page>

<page demo>
We will now ask you a few questions to learn more about you (e.g., your age, gender, etc.).

^^Please answer truthfully.
</page>


<page end>
Thank you for taking part in our study!
</page>

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search