- or download this
local $TODO = "-alpha and -fullscreen not yet implemented";
...
# Query above should not clear fullscreen state
and many more such hits
- or download this
#!/usr/bin/perl
use Tk;
...
});
MainLoop;
- or download this
#!/usr/bin/perl
use Tk;
...
$mw->focusForce;
MainLoop;
- or download this
#!/usr/bin/perl
use Tk;
...
$mw->bind('all' => '<Key-Escape>' => sub {exit;});
MainLoop;