feedbackCorrect
Experiments
Message shown when the participant’s response on this trial was scored CORRECT. This is the plain-text shortcut for the common case; it is equivalent to a correct: ... segment inside the feedback column, and it overrides that segment when both are present. Applies only to type test or practice trials.
Syntax
Section titled “Syntax”Write the message itself in the cell; the whole cell is the message, with no special grammar. Placeholders such as %response%, %rt%, %correct%, and %responseCode% are substituted before display, along with aggregates, participant details, and user variables. HTML is allowed.
Options
Section titled “Options”No enumerated options; any non-empty string is the message. Unlike the feedback column, the value is NOT split on ; or :.
Defaults & missing values
Section titled “Defaults & missing values”- Leaving the cell empty (or omitting the column) disables it; no message is shown.
- No default message exists; there is no built-in “Correct!” text.
- The message appears only when the cell is non-empty and the response was scored correct. If the answer was incorrect and neither
feedbackIncorrectnorfeedbackis set, no feedback screen appears.
Works with
Section titled “Works with”- Correctness comes from scoring the response against the
keycolumn; without a scoringkey, the correct message can never appear. - Overrides a
correct:segment in thefeedbackcolumn when both are present. - Display priority: a
timeoutmessage and an exact-response match both outrank thecorrectmessage. - Duration and advance are controlled by
feedbackTime; layout byfeedbackOptions; text color by thecolorscolumnfeedback:target. title/headtext is re-displayed above the message.
Examples
Section titled “Examples”Practice block with different messages per outcome:
| type | stimFormat | stim1 | keyboard | key | feedbackCorrect | feedbackIncorrect | feedbackTime |
|---|---|---|---|---|---|---|---|
| practice | .png | cat | c d | c | Correct! | Wrong - press C for cat | 1000 |
type,stimFormat,stim1,keyboard,key,feedbackCorrect,feedbackIncorrect,feedbackTime practice,.png,cat,c d,c,Correct!,"Wrong - press C for cat",1000
Correct-only encouragement (incorrect answers get no feedback screen at all):
| type | content | button1 | button2 | key | feedbackCorrect | feedbackTime |
|---|---|---|---|---|---|---|
| test | Is 7 x 8 = 56? | Yes | No | 1 | <b>Right!</b> %rt% ms | 1500 |
type,content,button1,button2,key,feedbackCorrect,feedbackTime test,Is 7 x 8 = 56?,Yes,No,1,<b>Right!</b> %rt% ms,1500
Tips & gotchas
Section titled “Tips & gotchas”- On a timed-out trial the message is never shown; a timeout never counts as a correct response.
- Because the whole cell is one message, semicolons and colons are literal here, in contrast to the
feedbackcolumn.