in reply to Dialog box Binding issue
that would force the user to click a button.$dialogBox->bind('<Return>' => undef);
Additionally, you can play with the binding when shifting focus on tabs, like
As a last resort, you can always make your own dialog out of a toplevel window, and setup the bindings to behave anyways you want.$dialogBox->bind('<Tab>' => sub{ #get currently focused button $dialogBox->configure(-focus => $my_focussed_button); # there is also forceFocus which may help force it });
|
|---|