The color of the border around the shape.
visualstimulus.name.borderColor
Read/Write
color
Can be set to any named color (e.g., brown, green, blue, lightyellow, ...).
The following trial sets the color of the border around a shape based on whether or not the response to the previous trial was correct:
<trial feedback>
/onTrialBegin = { if (trial.test.correct == true) shape.feedback.borderColor = green; else shape.feedback.borderColor = red; }
/ stimulusTimes = [0=feedback]
</trial>