Group: Administrators
Posts: 13K,
Visits: 104K
|
Yes, you absolutely *can* set the stimuli to /erase=false. All you need to do is to leave the error stimulus itself set to /erase=true and size it such that it clears the other stimuli once the error stimulus gets erased.
Alternatively, you can clear them by overwriting them with a blank <shape> or other stimulus displayed via /stimulusframes or -times at whatever time you want/need.
<block someblock> / trials = [1-4=sometrial] </block>
<trial sometrial> / stimulusframes = [1=blank, somestimulus] / validresponse = ("E", "I") / correctresponse = ("E") / errormessage = (errormsg, 500) </trial>
<text somestimulus> / items = ("A", "BB", "CCC", "DDDD") / erase = false / size = (20%,20%) / position = (50%, 40%) / txcolor = (black) / hjustify = center / vjustify = center </text>
<text errormsg> / items = ("X") / size = (20%,20%) / position = (50%, 40%) / txcolor = (red) / txbgcolor = (transparent) / hjustify = center / vjustify = center </text>
<shape blank> / shape = rectangle / erase = false / color = (white) / size = (100%, 100%) </shape>
|