Is there anyone that can help me with a tweaked Basic nut file? I want to take the Basic theme and just up it from 640x480 to 1920x1080. I can change the resolution in the file but then of course all of the other alignments are off and I just don't know how to do the math to "up" the numbers? Please help?
fe.layout.width=640;
fe.layout.height=480;
local t = fe.add_artwork( "snap", 348, 152, 262, 262 );
t.trigger = Transition.EndNavigation;
t = fe.add_artwork( "marquee", 348, 64, 262, 72 );
t.trigger = Transition.EndNavigation;
local l = fe.add_listbox( 32, 64, 262, 352 );
l.charsize = 16;
l.set_selbg_rgb( 255, 0, 0 );
l.set_sel_rgb( 0, 0, 0 );
l.sel_style = Style.Bold;
fe.add_image( "bg.png", 0, 0 );
l = fe.add_text( "[DisplayName]", 0, 15, 640, 30 );
l.set_rgb( 255, 255, 255 );
l.style = Style.Bold;
// Left side:
l = fe.add_text( "[Title]", 30, 424, 320, 16 );
l.set_rgb( 255, 0, 0 );
l.align = Align.Left;
l = fe.add_text( "[Year] [Manufacturer]", 30, 441, 320, 16 );
l.set_rgb( 255, 0, 0 );
l.align = Align.Left;
l = fe.add_text( "[Category]", 30, 458, 320, 16 );
l.set_rgb( 255, 0, 0 );
l.align = Align.Left;
// Right side:
l = fe.add_text( "[ListEntry]/[ListSize]", 320, 424, 290, 16 );
l.set_rgb( 255, 0, 0 );
l.align = Align.Right;
l = fe.add_text( "[FilterName]", 320, 441, 290, 16 );
l.set_rgb( 255, 0, 0 );
l.align = Align.Right;