| 
	Group: AdministratorsPosts: 13K, 
    Visits: 109K
 
 | 
                    
			            Based on your description, I assume you do something along the lines of (greatly simplified)
 <block myblock>
 / trials = [1-4=trialname]
 </block>
 
 <trial trialname>
 / inputdevice = mouse
 / stimulusframes = [1=background, stim15, stim14]
 / validresponse = (stim15, stim14)
 / iscorrectresponse = [substring(trial.trialname.response,5,1) == "5"]
 </trial>
 
 <shape background>
 / shape = rectangle
 / size = (100%, 100%)
 / color = (blue)
 </shape>
 
 <text stim15>
 / items = ("A")
 / position = (40%, 50%)
 </text>
 
 <text stim14>
 / items = ("B")
 / position = (60%, 50%)
 </text>
 
 With the above I am unable to reproduce the issue you observed. The background stimulus is not accepted as response and the /iscorrectresponse evaluation works as expected.
 
 I suspect there is something about your setup that I'm missing; what that is, I unfortunately have no idea.
 
 
 |