in reply to Re: perl tk [menu accelerator]
in thread perl tk [menu accelerator]

Thanks All. I used something like this $mw->bind($mw, "<Control-n>" => \&createNew); where 'mw' is my main window and createNew is my callback. And it worked fine for me. Thanks Again.