I have a gui built using tk perl and it has buttons that do various things.I would like to bind the enter key to certain buttons that already have subroutines attached to them. I know I can focus force certain buttons but lets say I want to press enter to submit after I fill in a field that has the focus. How can I bind the enter key to submit?
$Submit->bind('<Enter>'); causes weird repacking issues.