Hi, Another question about Perl-Tk. I need to make context-menus with 'Copy' and 'Paste' commands for 'entry' widgets. I found the following syntax for it. my $popup = $mwindow->Menu( -tearoff => 0, -menuitems => [ [Button => 'Copy', -command => [\©]], [Button => 'Paste', -command => [\&paste]] ] ); $where_entry->bind( "<Button-3>" => sub {$popup->Popup( -popover => "cursor", -popanchor => 'nw' )} ); $limit_entry->bind( "<Button-3>" => sub{$popup->Popup( -popover => "cursor", -popanchor => 'nw' )} ); sub copy { #? } sub paste { #? } The question is: how to pass the event widget name to subroutines ($where_entry or $limit_entry)? -- Regards, AlexThread Next