Group: Forum Members
Posts: 10,
Visits: 31
|
Hello!
I am trying to set up my experiment so that participants see one positive object and one negative object from a list of objects throughout their entire session. I have a few different spots in the script where Inquisit is selecting from this list to display to the participant, but I want to make sure that it is selecting the same positive and negative object each time for that specific person. Essentially, I want it to randomly select one positive object from the list that the participant will see anytime positive object is displayed later in the script (for memory_words_objects, posobj_posUP, and posobj_negUP). Here's a snippet of what I have so far:
<text POSOBJ> / numitems = 4 / items = posobj_text / select = constant / position = (50%, 50%) </text>
<item posobj_text> / 1 = "VACATION" / 2 = "SUNSHINE" / 3 = "LAUGHTER" / 4 = "HUG" </item>
<text NEGOBJ> / numitems = 4 / items = negobj_text / select = constant / position = (50%, 50%) </text>
<item negobj_text> / 1 = "DISEASE" / 2 = "NAUSEA" / 3 = "DISASTER" / 4 = "PARASITE" </item>
<trial memory_words_objects> / stimulustimes = [0 = POSOBJ; 1500 = blanks; 1700 = NEGOBJ; 3200 = blanks; 3400 = poswrd_baseline_objects; 4900 = blanks; 5100 = negwrd_baseline_objects] / response = timeout(6600) / correctresponse = (noresponse) </trial>
<trial posobj_posUP> / validresponse = ("A", "L") / correctresponse = ("L") / stimulustimes = [0 = noreplace (POSOBJ); 200 = blanks; 300 = replace (goodtarget)] / responsetrial = ("A", audio) / responsetrial = ("L", audio) </trial>
<trial posobj_negUP> / validresponse = ("A", "L") / correctresponse = ("A") / stimulustimes = [0 = noreplace (POSOBJ); 200 = blanks; 300 = replace (badtarget)] / responsetrial = ("A", audio) / responsetrial = ("L", audio) </trial>
|