use Tk; $bottomFrame = MainWindow->new(); sub display_text { my $txt_summary = $bottomFrame->Scrolled( "Text", -background => 'blue', -foreground => 'white', -height => '1', -takefocus => '0', -width => '40', -scrollbars => 'oe', )->pack(qw(-fill both -expand 1)); open(FH, "cuentos.txt") || die "no Abrio nada"; while () { $txt_summary -> Insert($_); } close (FH); $txt_summary->see('end'); return $txt_summary; } display_text(); MainLoop; __END__