This article applies to:
E-Prime 2.0
This bug has been corrected in E-Prime 2.0 (2.0.10.182).
Symptoms
Properties on a FeedbackDisplay object which utilize an attribute reference will not be reflected accurately at runtime; the values from the previous trial will be used instead.
Solution
Upgrade to E-Prime 2.0.10.193 or later.
Workaround
This workaround is intended only for those who are unable to update to the version of E-Prime that contains the fix:
Assuming your response object is named 'Stimulus' and your FeedbackDisplay object is named 'Feedback', use the following InLine script in between 'Stimulus' and 'Feedback' on the trial procedure:
If Stimulus.ACC = 1 ThenFeedback.ActiveState = "Correct"
ElseIf Stimulus.RT <> 0 ThenFeedback.ActiveState = "Incorrect"
ElseFeedback.ActiveState = "NoResponse"
End If
End If
Comments
0 comments
Please sign in to leave a comment.