in reply to perl tk [menu accelerator]

Show your actual code. You may have to resort to an invoke trick, like the following.
#!/usr/bin/perl use warnings; use strict; use Tk; my $mw = tkinit; my $t = $mw->Text->pack; my $b = $mw->Button( -text => 'Press Me', -command => \&foo, )->pack; + $mw->bind('<Control-a>', [$b => 'invoke']); MainLoop; sub foo { $t->insert('end', "Thank you\n"); $t->see('end'); }

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku