Group: Forum Members
Posts: 22,
Visits: 77
|
Hi!
I'm currently trying to present text stimuli in a trial which participants can navigate through using the spacebar, but I can't find a way to do it without making each text stimulus its own trial. Here's my script:
<trial cond1> / stimulusframes = [1=instructiontxt1, continue; 2=thecrime1, continue; 3=vignette1, continue; 4=theproscase1, continue; 5=prosecution1, continue; 6=thedefcase1, continue; 7=defense1, continue] / inputdevice = keyboard / validresponse = (" ") </trial>
<text continue> /items = ("Press spacebar to continue") / position = (60%, 80%) / fontstyle = ("Arial", 2%, true, false, false, false, 5, 0) </text>
<text instructiontxt1> / items = ("Please imagine that you were selected as a member of the jury for a criminal trial.~nThe following is a summary of the trial proceedings from the case.") / size = (75%, 75%) / fontstyle = ("Arial", 4.5%, true, false, false, false, 5, 0) / vjustify = center </text>
<text thecrime1> / items = ("The Crime") / size = (85%, 85%) / vjustify = center / fontstyle = ("Arial", 10%, true, false, false, false, 5, 0) / vposition = 40 </text>
<text vignette1> / items = ("Jack Smith, age 25, is charged with larceny. Under your state’s law, larceny is defined as “the unlawful taking of property with the intent never to return it.” On July 24th, 2016, witnesses report seeing Mr. Smith at the Bakersfield Fair around 10:30 p.m. These witnesses recall seeing Mr. Smith walk over to a group of people he did not appear to know, pick up a backpack that was sitting on the ground next to the group, and walk away with it. The backpack belonged to Sam Turner and upon seizure by the police, the backpack and its contents were found to be valued at $350. The backpack was later returned to Mr. Turner.") / size = (90%, 90%) / vjustify = center / fontstyle = ("Arial", 3%, true, false, false, false, 5, 0) / vposition = 40 </text>
<text theproscase1> / items = ("The Prosecution Case") / size = (90%, 90%) / vjustify = center / fontstyle = ("Arial", 10%, true, false, false, false, 5, 0) / vposition = 40 </text>
<text prosecution1> / items = ("Witnesses saw Mr. Smith walk up to a group of people he did not know and pick up a backpack that was on the ground next to Mr. Turner. The prosecution argued that Mr. Smith knowingly took the backpack, which did not belong to him, with the intent to keep it indefinitely.") / size = (90%, 90%) / vjustify = center / fontstyle = ("Arial", 3%, true, false, false, false, 5, 0) / vposition = 40 </text>
<text thedefcase1> / items = ("The Defense Case") / size = (90%, 90%) / vjustify = center / fontstyle = ("Arial", 10%, true, false, false, false, 5, 0) / vposition = 40 </text>
<text defense1> / items = ("Mr. Smith admitted to taking the backpack. The defense attorney produced the results of a drug test that was administered to Mr. Smith upon his arrest. Mr. Smith tested negative for drugs. The defense argued that Mr. Smith’s did not act with the intent never to return the backpack when he took it. Therefore, he cannot be legally convicted of larceny.") / size = (90%, 90%) / vjustify = center / fontstyle = ("Arial", 3%, true, false, false, false, 5, 0) / vposition = 40 </text>
|