Tagged Questions

Tkx is an interface to Tk from Perl. Tk is a GUI toolkit tied to the Tcl language; Tkx provides a bridge to Tcl that allows Tk based applications to be written in Perl.

learn more… | top users | synonyms

6
votes
2answers
3k views

Should I use Perl/Tk, Tcl::Tk or Tkx for a Perl GUI?

I really like Perl/Tk, but have come to the opinion that it's DOA. I think Tcl::Tk and Tkx are better solutions. Assume I drop Perl/Tk. Is the "most supported" route to go with Tcl::Tk (which hasn't ...
2
votes
2answers
207 views

Perl Update UI on Long Thread

I have a Perl script running on version 5.10 build 1004 of ActiveStates Active Perl on windows xp which creates a UI and then runs a long process after a button press. During this process I would ...
1
vote
2answers
87 views

How to avoid globals in Perl Tk (Tkx) GUI programming using an MVC model

I have an old and very large Perl Tk GUI application that I'm refactoring to Tkx. I want to split the interface into several packages so I can build up the application UI in a modular manner. Also, I ...
1
vote
0answers
56 views

Resize Notepad based on holding frame

I'm trying to get the notepad to expand when dragging the main window .... and suggestions? I have it to where it reads the screen size but it won't keep the changing size of the window. All my ...
1
vote
0answers
88 views

Drag and Drop IDE for TKX

Does anyone know of a good IDE for GUIs made with TKX? Drag and drop capabilities like NetBeans or VS would be nice.
1
vote
3answers
134 views

Do I always have to provide Tkx's -command argument an anonymous subroutine?

I find it a bit weird that I have to wrap defined subroutines anonymously when specifying the -command argument for Tkx widgets. An excerpt from a TkDocs tutorial demonstrates this: my $cb = ...
1
vote
1answer
614 views

How can I scroll a single frame in Perl Tk?

I'm trying to create a GUI for a conversion program. I want to create a frame containing the log file, but I can't get it. I found some codes to make the entire window scrollable, but it's not what I ...
1
vote
1answer
114 views

How do I create a sash in Perl Tkx?

Does anyone know how to create a sash object in Perl Tkx? I am using ActivePerl and Perl 5.10.
1
vote
2answers
812 views

Trying to create a standalone app from a Perl script that uses tkx (Tcl/tk)

Here are my specs: OS X Tiger Perl 5.8 Using Tkx bundled with ActiveTcl v8.5 I've successfully created a standalone app with the above configuration using PAR/pp, but it's not a completely ...
1
vote
1answer
828 views

How do you reposition the main window under Perl Tkx?

Having more or less converted a lot of old Tk scripts over to Tkx I'm stuck for an port for the following function which repositions the window passed in as a parameter in the centre of the screen. I ...
0
votes
0answers
36 views

Does ActiveState PerlApp have a problem binding ico files as “Bound Files”

I posted this question at ActiveState but got no reply from support or in a discussion forum. Here is probably better. I'm a long time user of PerlApp (ver. 8.2.1 Build 292072) and I have experienced ...
0
votes
1answer
355 views

How can i repeatedly prompt the user with Tkx?

Using Perl Tkx, I want to get some input from the user, close the window, and maybe do it again later. For user input, I'm just displaying some buttons, and the user gets to click on one of them. ...
0
votes
2answers
159 views

Buffering/Updating issue for text element

#!/usr/bin/perl use strict; use Tkx; my $mw = Tkx::widget->new('.'); $mw->g_wm_minsize( 400, 350 ); my $btn_start = $mw->new_ttk__button( -text => "Start", -width => 60, -command ...