Changing Checkbox appearance
Posted: Fri Sep 16, 2016 1:52 pm
Is it possible to change the appearance of Checkboxes, and Combo boxes?
UCCNC machine control software support forum
https://forum.cncdrive.com/
if (AS3.Getcheckboxstate(75))
{
AS3.Setcheckboxstate(false, 75);
AS3.Switchbutton(false, 20001);
}
else
{
AS3.Setcheckboxstate(true, 75);
AS3.Switchbutton(true, 20001);
}
ger21 wrote:Question?
Do the actual checkboxes need to be on the screen when I do this?
If so, my plan was to put them on a hidden tab .
If I don't need to add them, that makes things a little easier.