The screencolor attribute sets the background color of the screen for the entire block.
Applies to
Syntax
/ screencolor = (red, green, blue)Parameters
| red | An integer from 0 to 255 specifying the intensity of the red component. |
| green | An integer from 0 to 255 specifying the intensity of the green component. |
| blue | An integer from 0 to 255 specifying the intensity of the blue component. |
Remarks
The default screencolor is white (255, 255, 255).
Examples
The following sets the background screen color to blue:
<block myblock>
/ trials = [1-10=sometrial]
/ screencolor = (0, 0, 255)
</block>