Hi,
I use Gui Guider 1.6.0 on Ubuntu. I have a button. I want to have unclickable screen after clicking this button. I know that below code helps me for one object. But I have a lot of object on one screen and I have more than 10 different screens.
lv_obj_clear_flag(guider_ui.obj1, LV_OBJ_FLAG_CLICKABLE);
Is there any short(cut/code) to do this with one line code ?
Such as
lv_obj_clear_flag(ALL OBJECTS ON THE PAGE, LV_OBJ_FLAG_CLICKABLE);
I have tried this,
I added lock button to the page, I added container and added all other objects into this container. I added event clear flag for this container but it didn't work as I expected. I might click other objects.