ID:397730
 
Keywords: br, enter, interface, label, skin
(See the best response by DarkCampainger.)
Problem description:
Let's say I have a label on my skin that's quite big. I want the text to appear like this in the label:

Health: 100
Strength: 5
Defense: 5

Simple as it may be, I can't figure out how to make the new lines. As in, it ends up coming out like this:
Health: 100 Strength: 5 Defense: 5

Anyone know what I gotta do to fix this?
Best response
You can use the '\n' newline entity:
winset(src, "label", "text=\"Health: [health]\nStrength: [strength]\"")
Awesome. Thanks for that.