views:

35

answers:

1

How can I force the Tab to focus the element I want, is it possible to give my software a list of elements to cycle focus ?

I remember once using a property called tabindex, but I can't find it anymore.

Maybe, preventing Tab to focus an element could also work ?

+1  A: 

Yes, you can set the order of focusing for each widget in a container, using the function container.set_focus_chain().

ptomato
Thanks ! It works perfectly.
Studer