Re: Table Field
Posted: Mon Mar 30, 2020 11:48 am
Not sure I get the problem then, they look individually colored to me 
Questions and answers about the LiveCode platform.
https://forums.livecode.com/
Ah, but the idea of my script was JUST to colorise item 1 of row 1.bogs wrote: Mon Mar 30, 2020 11:48 am Not sure I get the problem then, they look individually colored to me![]()
Code: Select all
on mouseUp
put empty into fld "tf"
set the itemDelimiter to TAB
------
set the backGroundColor of item 1 of line 1 of fld "tf" to red
put "be" into item 2 of line 2 of fld "tf"
put "completely" into item 3 of line 3 of fld "tf"
put "bonkers" into item 4 of line 4 of fld "tf"
put "!!!!!!!!!!" into item 5 of line 5 of fld "tf"
end mouseUpCode: Select all
set the backGroundColor of char 1 to -1 of item 1 of line 1 of fld "tf" to redThanks.BackgroundColor needs a character reference.