https://www.reddit.com/r/geogebra/comments/1i7vzf3/commands_that_i_cant_find/
[code]P = (0, 0)[br][br]# colors Red and Blue[br]colR = "\definecolor{r}{rgb}{0.9,0.1,0.1}"[br]colB = "\definecolor{b}{rgb}{0.17,0.39,0.63}"[br][br]# Text checked[br]txtChecked = "\scalebox{3}{\textcolor{b}{\textbf{☑}}}\scalebox{2}{ \text{ I am checked ☺ } }"[br][br]# Text unchecked[br]txtUnChecked = "\scalebox{3}{\textcolor{r}{\textbf{☐}}}\scalebox{2}{ \text{ I am not checked ☹ } }"[br][br]check = true[br][br]checkTxt = If( check == true, Text(colB + txtChecked, P, true, true, 1), Text(colR +txtUnChecked, P, true, true, 1) )[br][br]c = Circle((3, 4), 2)[br][br]e = Ellipse((7, 3), (10, 3), (9, 4))[br][br]SetConditionToShowObject(c, check)[br]SetConditionToShowObject(e, check)[br][br][br][/code]