简体   繁体   中英

How to remove bullet text in button using bright script?

I added two Button in ROKU. But I use Button tag in Roku But every time Set Bullet-in button text. Is there any way to remove bullet text in Roku.

在此处输入图片说明

Button tag takes a default "iconUri". To remove the bullet, set "iconUri" field as empty or an image uri that does not exist.

<Button id="button1" text="Button Name" iconUri="" />

OR

<Button id="button1" text="Button Name" iconUri="PKG://S" />

OR (set the "iconUri" field in respective "brs" file)

m.button1 = m.top.findnode("button1")
m.button1.iconUri = ""

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