I would like the users to be able to select a background color at startup. Not sure how to code it...
Thanks!
Professional Software Development Tools
I would like the users to be able to select a background color at startup. Not sure how to code it...
Thanks!
maybe setting link images hidden with colors and names set hidden until they pic that color
i will upload u an example soon
Code:01 -- Leave this. 02 Properties = {} 03 04 -- Configure this. 05 PageName = "Page1"; 06 Properties.BackgroundColor = Math.HexColorToNumber( "FF0000"); 07 08 -- Leave this. 09 Application.SetPageProperties(PageName, Properties);
here u go... do some chages save the color to a file then load it...
Thanks for the help. I made some changes to make it change the page background and it works great
again thanks!
local nR = e_Pos; -- текущая позиция красного цвета
local nG = SliderEx.GetSliderPos("Slider_G"); -- позиция зеленого цвета
local nB = SliderEx.GetSliderPos("Slider_B"); -- позиция синего цвета
local nColor = Math.RGBToNumber(nR, nG, nB); -- получаем номер цвета
--Shape.SetFillColor("Shape1", nColor); -- устанавливаем новый цвет для аудио плеера
Properties = {}
PageName = "Page1";
Properties.BackgroundColor = nColor;
Application.SetPageProperties(PageName, Properties);