Group: Administrators
Posts: 13K,
Visits: 104K
|
This won't work / is invalid syntax:
<text highnumber> /items = ("") /position = (50%, values.numbery) /fontstyle = ("Arial", values.focussize, true, false, false, false, 5, 0) /txcolor = (values.highnumcolor) /txbgcolor = (white) /select = values.numberget </text>
The way to do this is defining
<text highnumber> /items = ("") /position = (50%, values.numbery) /fontstyle = ("Arial", values.focussize, true, false, false, false, 5, 0) /txbgcolor = (white) /select = values.numberget </text>
and then doing
/ ontrialbegin = [text.highnumber.textcolor=values.highnumcolor]
Also, you need to get rid of the double-quotes in
<list highdemandcolor> /items = (yellow, blue) /replace = false /selectionrate = trial </list>
for the items to be interpreted as colors.
|