PennController for IBEX › Forums › Support › Issue with ‘.before()’ › Reply To: Issue with ‘.before()’
August 22, 2023 at 6:58 am
#10830
Participant
UPDATE:
It worked like this:
,
newVar("hi--text").set(getVar("fantasy--name")).set(v=>`Olá, ${v} !😄`) // create new var to show text.
,
newText("welcome--fantasy--name--msg").text( getVar("hi--text") ) // show text.
.cssContainer({
"font-size": "60px",
'color':'white',
"background-image": "linear-gradient(to top left, #0099CC, #66CCFF)",
"border-radius": "25px"})
Is this the best way to do it, tho?