I'm trying to terminate a List Object once a participate makes a response.
I have a list object (MorphList) that specifies which image to show on each trial of the procedure (MorphProc). Within MorphProc, I have an Image Display object (MorphImage) that shows an image for 1000ms and I have the keyboard set as an input mask. The only allowable input is "b" and the correct response is "b". The MorphList continues to present images until the participant presses the "b" key. After the MorphImage object, I have an inline script with the following statement (taken from e-prime's help website):
If MorphImage.ACC = 1 Then
MorphList.Terminate
End If
However, this script does not seem to be working. I've tried replacing the MorphImage.ACC = 1 with MorphImage.RESP = "b" and that doesn't work either. I'm also not getting an error message when I run the experiment so I'm not sure what I'm doing wrong.
Any help with this issue will be greatly appreciated!
Sonia