Author Topic: scrolling text layout help  (Read 2368 times)

InsecureSpike

  • Jr. Member
  • **
  • Posts: 17
    • View Profile
scrolling text layout help
« on: March 12, 2017, 09:48:04 AM »
ok, i've seen and read the posts on this already,

http://forum.attractmode.org/index.php?topic=300.msg2189#msg2189

but i would like to add scrolling text to a list box like this, if its possible?

Code: [Select]
local l = fe.add_listbox( 630, 110, 570, 530 );
l.rows = 26;
l.charsize = 24;
l.selbg_alpha = 0;
l.set_selbg_rgb( 0, 0, 0 );
l.set_rgb( 166, 166, 166 );
l.set_sel_rgb( 255, 0, 0 );
l.align = Align.Left;
l.sel_style = Style.Regular;

thank you