I have a list of n Entry widgets. The user should be able to type only the following charaters: "V", "F", " ". If the user types one of those characters, the focus should pass from Entry #x to Entry #x+1, otherwise the focus should stay where it is (on Entry #x) and the input should be discarded.
I am not able to discard the wrong input: if the user presses a key different from those allowed, the Entry field get that key, but the command .delete(0,END) doesn't work, as the widget itself hasn't yet memorized the key pressed.
How could I do?