python - Scrolling a Kivy Label horizontally -


i'd have label in kivy app scroll horizontally fixed vertical size rather vertically wrapping. imagine marquee tag in bad old days.

eventually i'd have automatically scroll left right (and back) show string long display.

all of scrollable label examples i've seen vertically scrolling , 2 days of working on has gotten me nowhere.

edit: note: working on windows time being. target android , iphone

here's example of ui want...

example:

the track name @ bottom should height of 1 line of text , scroll horizontally.

the same way of doing vertical scroll:

scrollview:         label:             text: 'hellooooooooooooooooooooosdsadas'             text_size: none, self.height  # set text wrap box height             size_hint_x: none             width: self.texture_size[0]  # set label width text width 

result be:

scroll horizontal


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -