Script error I cant figure out, basically I am trying to set checkbox "82" as ticked, checkbox "70" as un-ticked and then apply settings, seems simple enough, but I just cant figure out what I'm doing wrong, code below, any help would be greatly appreciated?
{
exec.Setcheckboxstate(true,82);
exec.Wait(100);
exec.Setcheckboxstate(false,70);
exec.Wait(100);
exec.Switchbutton(true,168);
exec.Wait(100);
}