| Thread | Last Post | Replies |
|
| children of DirTree | 30 Apr 2008 14:04 GMT | 1 |
I want to get a list of all the children, i.e., all the paths, when a user double-clicks on a directory entry. The infoChildren($path) method only returns the displayed children; recursive calls to infoChildren() will return nothing.
|
| How to get alias information | 30 Apr 2008 07:25 GMT | 5 |
n my perl script, I need to know the command alias name to make my program flexible. I tried many methods like system("alias cmd"), `alias cmd`, use shell qw,etc. But no one could recognize the built in command alias. If I use `which cmd`, it would look for the command
|
| deleting a cascade entry | 30 Apr 2008 05:00 GMT | 5 |
I'm running ActiveState build 813 on XP/Home. I've been using the cascade, command, and separator methods of the Menu widget. None of them are mentioned in the (ActiveState) Menu man page, but are described in Walsh's book and seem to work fine.
|
| Intercept the X close. | 28 Apr 2008 14:58 GMT | 3 |
Debian/Etch TK804 I coulda swore I saw a blurb on how to intercept the X close box in my Mastering TK manual. But I can't find it and trying to search on X close gives about 50 zillion hits on both the XBOX and Xwindows. The only
|
| Reading a colormap? | 26 Apr 2008 21:13 GMT | 3 |
I have a Perl Tk application I've developed which comes up on some X-Window machines (Sun Solaris CDE I believe) with the wrong colors: white text on a white background. Linux running KDE and Gnome comes up fine.
|
| Top level window | 21 Apr 2008 17:24 GMT | 2 |
How can I set my top level window (MainWindow) at a fixed position? For right now, every time I run the script, it position randomly. Like set at x=200,y=400 in terms of pixels or something. $mw = MainWindow->new;
|
| How to have widgets available in subroutines... | 21 Apr 2008 07:46 GMT | 3 |
I am beginning with ptk and have a question about how to use widgets in subroutines. A typical application is a simple output in a text widget in a subroutine.
|
| "postcascade" widget method | 20 Apr 2008 14:46 GMT | 1 |
I have a set of cascaded menus in a menu-bar and i want to bind a key to call/recall a second or third tier menu when no menu is posted. Can i do this without making a popup clone? I have tried using "->post" "->postcascade" and "->activate", eg.
|
| Better Color Editor widget | 15 Apr 2008 18:51 GMT | 6 |
does anyone have a replacement for the standard ColorEditor? This widget is (i) not always easy to use (ii) quite different from what most people are used to. Cheers,
|
| nagging problem with bindtags | 15 Apr 2008 16:01 GMT | 1 |
I have a problem with bindtags which the minimal program below illustrates. use strict; use Tk;
|
| Is is possible to use different alignment in different column for table matrix? | 11 Apr 2008 05:46 GMT | 3 |
Is it possible to set justification on each column individually (right/ left/center) in TableMatrix? Please find the attached sample application. Thanks,
|
| Breaking out of loops? | 09 Apr 2008 06:08 GMT | 3 |
Here's my problem: I need to keep running a subroutine (with a while loop) until a condition is met, but this condition can only be set by a button on my Tk interface being pressed. The problem is that while the loop is running no other activity in the application is allowed,
|
| Problems with Scrolled and color | 07 Apr 2008 22:44 GMT | 4 |
I have some problems finishing off my program. I decided that some portions of certain windows are colored. Some widgets are created using "Scrolled". Given that $mw is some container, my $frame = $mw->Frame( -background => '#DDFFDD' )->pack( ... ) ;
|
| resizing images | 03 Apr 2008 21:57 GMT | 1 |
Hi, two questions really... Is there any sort of recommended or 'best' way to go about resizing images according to the screen resolution; at program startup? Is there a way to enforce a particular screen resolution and still
|