Group: Administrators
Posts: 13K,
Visits: 104K
|
What you can do is insert the stimuli in question into the trial's frames once at the beginning of the <expt> or <block>:
<block myblock> / onblockbegin = [trial.mytrial.setstimulustime(shape.h,0); trial.mytrial.insertstimulustime(shape.v,0)] / trials = [1-4=mytrial] </block>
<trial mytrial> / stimulustimes = [500=mytext] / validresponse = (57) </trial>
<text mytext> / items = ("A", "B", "C", "D") </text>
<shape h> / shape = rectangle / size = (50%, 2px) </shape>
<shape v> / shape = rectangle / size = (2px, 50%) </shape>
They will persist as long as you don't call resetstimulusframes().
|