You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
821 B
Python
20 lines
821 B
Python
#
|
|
# Show line wrap, re-color, line align and text scrolling.
|
|
#
|
|
label1 = lv.label(lv.scr_act())
|
|
label1.set_long_mode(lv.label.LONG.WRAP) # Break the long lines*/
|
|
label1.set_recolor(True) # Enable re-coloring by commands in the text
|
|
label1.set_text("#0000ff Re-color# #ff00ff words# #ff0000 of a# label, align the lines to the center"
|
|
"and wrap long text automatically.")
|
|
label1.set_width(150) # Set smaller width to make the lines wrap
|
|
label1.set_style_text_align(lv.ALIGN.CENTER, 0)
|
|
label1.align(lv.ALIGN.CENTER, 0, -40)
|
|
|
|
|
|
label2 = lv.label(lv.scr_act())
|
|
label2.set_long_mode(lv.label.LONG.SCROLL_CIRCULAR) # Circular scroll
|
|
label2.set_width(150)
|
|
label2.set_text("It is a circularly scrolling text. ")
|
|
label2.align(lv.ALIGN.CENTER, 0, 40)
|
|
|