shortyfw06 has asked for the wisdom of the Perl Monks concerning the following question:
Is there a way to disable the Tkx error dialogs so they do not popup on the screen?
#!usr/bin/perl use Tkx; use strict; use warnings; my $mw; $mw = Tkx::widget->new("."); my $batch_button = $mw->new_button( -text=>"TEST", -command=> \&test )->g_pack(-side=>'right'); Tkx::MainLoop(); sub test { die(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tkx Error Dialogs
by Anonymous Monk on Jan 16, 2013 at 18:04 UTC |