funkyLabel = Geyser.Label:new({
name = "funkyLabel",
x = 100, y = 100,
height = 200, width = 100,
color = "LawnGreen",
message = "Label created"
})
funkyLabel:setStyleSheet([[
qproperty-wordWrap: true;
background-color: black;
border-width: 2px;
border-color: #005c28;
border-style: groove;
border-radius: 2;
]])
funkyLabel:setFontSize(11)
function flEcho(myEcho)
print("running") --debug
funkyLabel:echo(myEcho,"yellow")
print("still running") --debug
end
Is it possible? If not, how can I put a border around a standard container so i can use echo / cecho?
Answers
Assuming I understand the problem. .
@Austere, you're using a miniconsole, i wanted to convert it to a Geyser label so I could have a border around it. Couldn't get it to work cleanly, so have instead created a label with a border slightly larger that then aff_display window you have, so best of both worlds (bit clunky, but achieves what I want for now).
Love your aff tracker, by the way, although I've heavily modded it for my own use now