Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
venkatareddy
Visitor

How to Scroll Focused Rowlist Label Text

I am using Row List. I need to scroll my focused row list item label text. As of now I used ScrollingLabel. But While using this type I am getting like, all item list label text are scrolling automatically. So now I need scroll label text only on focused RowList ItemLabel Text. Thanks in advance

Here is scrolling lable :
<ScrollingLabel 
      id = "itemText" 
      maxWidth = "196" 
      translation="[0,0]" 
      font="font:MediumSystemFont" 
      height="65"
      text = ""
      horizAlign = "center" 
      vertAlign = "top" />
0 Kudos
1 REPLY 1
destruk
Binge Watcher

Re: How to Scroll Focused Rowlist Label Text

You should be able to set the default "repeatcount" to 0 so they will all be set to not scroll, and then set to -1 for the focused list after display.  Alternately set the "scrollspeed" to 0.
https://sdkdocs.roku.com/display/sdkdoc/ScrollingLabel

One of those two should do what you ask.
0 Kudos