Attract-Mode Support Forum
Attract-Mode Support => Themes => Topic started by: bundangdon on January 24, 2017, 10:29:44 PM
-
Hi everyone! I've mentioned this before a while back but didn't get any response and I'm (again) wondering if I could get some help with the listbox, for the games list. When using wheels, the list of games is seamless, without any separation or breaks at the beginning or end. However, when making a games list (without wheels), this doesn't seem to be the case. Here's an example (screenshots below)
What I would like to do is make the games list continuous/seamless without any separation, often implemented in other frontends. Any ideas on how I can fix this? Here's the code from the layout .nut file
// Listbox Name
local l = fe.add_listbox( 1455, 159, 439, 825 );
l.rows = 12;
l.charsize = 27;
l.selbg_alpha = 0;
l.set_selbg_rgb( 100, 100, 100 );
l.set_rgb( 175, 175, 175 );
l.set_sel_rgb( 255, 255, 255 );
l.align = Align.Left;
l.sel_style = Style.Bold;
Any help would be very much appreciated :)
-
Hi bundangdon,
I don't think there is any built-in solution for this (not according to the documentation and the code ...), why don't you use a conveyor of Text objects ?
-
Hi bundangdon,
I don't think there is any built-in solution for this (not according to the documentation and the code ...), why don't you use a conveyor of Text objects ?
Thanks for the response! Yep, I've checked the documentation and even looked at other layouts 'nut files and haven't had any luck. I'm not all that great at coding and have made all my layouts with a lot of 'cut and paste' techniques :) How would I go about using such a conveyor?
-
probably should be in "scripting " section but any way
Here is what i have done with some of my own themes because i felt the same thing
i just add it as a "fe.do_nut("scripts/gamelist.nut");"
but you can just add it in the layout.nut if you want. modify as needed
ie: spacing, font size.......
youtube preview = https://youtu.be/bMyjz-OBLU8 (https://youtu.be/bMyjz-OBLU8)
//******************************************************************
//***********start**************************************************
local list = fe.add_text("[Title]", 036, 030, 800, 100 );
list.index_offset = 3;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 160, 800, 100 );
list.index_offset = 2;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 300, 800, 100 );
list.index_offset = 1;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
//------------------------------------------------------------------
list = fe.add_text("[Title]", 036, 444, 800, 100 ),
list.charsize = 40;
list.set_rgb( 0, 0, 255 );
list.alpha = 255;
//list.font="Blogger";
//------------------------------------------------------------------
local list = fe.add_text("[Title]", 036, 600, 800, 100 );
list.index_offset = -1;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 750, 800, 100 );
list.index_offset = -2;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 900, 800, 100 );
list.index_offset = -3;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";;
//*********end********************************************************
//********************************************************************
hope this helps you! peace..
-
probably should be in "scripting " section but any way
Here is what i have done with some of my own themes because i felt the same thing
i just add it as a "fe.do_nut("scripts/gamelist.nut");"
but you can just add it in the layout.nut if you want. modify as needed
ie: spacing, font size.......
youtube preview = https://youtu.be/bMyjz-OBLU8 (https://youtu.be/bMyjz-OBLU8)
//******************************************************************
//***********start**************************************************
local list = fe.add_text("[Title]", 036, 030, 800, 100 );
list.index_offset = 3;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 160, 800, 100 );
list.index_offset = 2;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 300, 800, 100 );
list.index_offset = 1;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
//------------------------------------------------------------------
list = fe.add_text("[Title]", 036, 444, 800, 100 ),
list.charsize = 40;
list.set_rgb( 0, 0, 255 );
list.alpha = 255;
//list.font="Blogger";
//------------------------------------------------------------------
local list = fe.add_text("[Title]", 036, 600, 800, 100 );
list.index_offset = -1;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 750, 800, 100 );
list.index_offset = -2;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";
local list = fe.add_text("[Title]", 036, 900, 800, 100 );
list.index_offset = -3;
list.charsize = 40;
list.set_rgb( 255, 0, 0 );
list.alpha = 255;
//list.font="Blogger";;
//*********end********************************************************
//********************************************************************
hope this helps you! peace..
Fantastic! It took a little bit of work with the code provided but it was well worth the effort :) Now, the games list in the layout is seamless and looking the way I prefer, as shown below. Thank you very much!
-
any time that's what we are all here for....looks good..
-
una vuelta de tuerca al codigo de jedione...
variables para configurar casi todo (numero de juegos, colores, fuentes, trasparencias....)
------------------------------
A twist to the jedione code ...
Variables to configure almost everything (number of games, colors, fonts, transparencies ....)
-
HEY THAT'S GREAT...ILL BE USING THAT CODE THANKS FOR THE SHARE.....