thanks for your reply liquid8 ,,,
so i solved my problem..
this worked...class UserConfig
{ </ label="User custom text",
help="Enter text to display on the layout", order=1 />
uct="Change this text in the Layout Options";
}
local my_config = fe.get_config();
local flx = fe.layout.width;
local fly = fe.layout.height;
local flw = fe.layout.width;
local flh = fe.layout.height;
local uct = fe.add_text( my_config["uct"], flx*0.030, fly*-0.003, flw*0.500, flh*0.050 );
uct.charsize = 20;
uct.set_rgb( 205, 205, 205 );
uct.set_bg_rgb( 0, 0, 0 );
uct.bg_alpha = 000;
uct.font="ARCADE";
uct.align = Align.Left;
it needed the screen size to make it work
dont know why..
local flx = fe.layout.width;
local fly = fe.layout.height;
local flw = fe.layout.width;
local flh = fe.layout.height;
and must be run from the layout.nut
not a fe.do_nut ,,wont work
thought what im tring to do is run the theme with
fe.do_nut("scripts/start.nut"); for all the diff-aspects of the theme
ie:
local my_config = fe.get_config();
local flx = fe.layout.width;
local fly = fe.layout.height;
local flw = fe.layout.width;
local flh = fe.layout.height;
fe.do_nut("scripts/cabs.nut");
local bg = fe.add_image( "images/bg.png", 0, 0, flw, flh );
fe.do_nut("scripts/wheel.nut");
fe.do_nut("scripts/bars.nut");
fe.do_nut("scripts/bgf.nut");
fe.do_nut("scripts/logo.nut");
fe.do_nut("scripts/start.nut");
fe.do_nut("scripts/custom-1.nut");
fe.do_nut("scripts/clock.nut");
fe.do_nut("scripts/reload.nut");
and it's working great...for keeping it organized
and it will make it a snap for inserting code and creating themes
you need a wheel in your theme just ad "fe.do_nut("scripts/wheel.nut");" done..
new display menu im putting out tomorrow morning....check it out...peace