Page 1 of 1

Display BackFill{} and color

Posted: Tue Jan 19, 2016 5:32 pm
by sinisrus
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

Re: Display BackFill{} and color

Posted: Wed Jan 20, 2016 7:12 pm
by airsoftsoftwair
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

Posted: Thu Jan 21, 2016 8:02 am
by sinisrus
Yes work nice

Thank you :-)