in reply to tk menu commands dont work while button pressed

Believe it or not, the answer is really simple

Try

$menu->Post($x, $y);
instead of
$menu->post($x, $y);
According to the Mastering Perl/Tk book (Steve Lidie & Nancy Walsh):
The post and Post Methods

The lower-level mechanism is the Menu post method, which posts a menu at a specific screen coordinate. The Post method works like post, but additioinally activates a specific menu item.

I tried... it worked.

Replies are listed 'Best First'.
Re^2: tk menu commands dont work while button pressed
by mpage (Initiate) on Jan 23, 2009 at 22:14 UTC
    Sweet! Just like you say, thanks. Matt