my $textEntry = $mainWindow -> Entry(-state => 'normal') -> pack( -side => 'bottom', -expand => 'BOOLEAN'); $textEntry -> bind('' => &get); sub get { my $text = $textEntry -> get(); print "$text\n"; }