It is a bug?
---
@DISPLAY 1,
{
Backfill={
Type="Color",
Color=#GRAY
}
;Color=#GRAY ;<= if i use this with backfill = no work
}
EscapeQuit(True)
/* Loops */
Repeat
WaitEvent
Forever
Display BackFill{} and color
- airsoftsoftwair
- Posts: 5635
- Joined: Fri Feb 12, 2010 2:33 pm
- Location: Germany
- Contact:
Re: Display BackFill{} and color
You need to use a comma of course, i.e.
Code: Select all
@DISPLAY 1, {Backfill={Type="Color", Color=#GRAY}, Color=#GRAY}
EscapeQuit(True)
/* Loops */
Repeat
WaitEvent
Forever
Re: Display BackFill{} and color
Yes work nice
Thank you
Thank you