Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Tk::Notebook exclude tab from focus traversal

by tybalt89 (Monsignor)
on Nov 26, 2018 at 08:36 UTC ( [id://1226323]=note: print w/replies, xml ) Need Help??


in reply to Tk::Notebook exclude tab from focus traversal

Quick hack before I go to bed.

#!/usr/bin/perl # https://perlmonks.org/?node_id=1226322 use strict; use warnings; use Tk; require Tk::NoteBook; my $main = MainWindow->new( ); my $nb = $main->NoteBook(-takefocus => 0 )->pack(-expand => 1, -fill = +> 'both'); my $page1 = $nb->add('page1', -label => 'Page 1'); my $one = $page1->Entry()->pack(); $page1->Entry()->pack(); $page1->Entry()->pack(); my $four = $page1->Entry(-takefocus => 1)->pack(); $four->bind('<FocusIn>' => sub {$one->focus} ); $nb->add('page2', -label => 'Page 2'); MainLoop;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1226323]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-19 06:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found