简体   繁体   中英

Roku: How to change label text size

Bright script using scene graph. i want to change size of default font without Font node. I used "SmallestSystemFont" font. It appears large font then actual require size.

<Label id="myLabel" width="200" height="200" text="Hello Label" font="font:SmallestSystemFont"/>

Add this code to the script, attached to your component:

myLabel = m.top.findNode("myLabel")
myLabel.font.size = 20

Every Label node has Font node inside. Thus you can simply access it and change its properties.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM