Thank you! I suddenly found out that the tooltips don't work in the choice menu like this:
$ x = {1: True, 2: True, 3: True, 4: True, 5: True}
while x[1] or x[2] or x[3] or x[4] or x[5]:
menu:
"Blablabla" if x[1] and y == 1:
$ x[1] = False
$ y = 0
pass
"Yaddayaddayadda" if x[2] and b== 1:
$ x[2] = False
$ b= 0
pass
But I didn't test your code. So I wonder, does your code work with the choice menu like this one?