Thanks for the great module

2012-09-02 Thread Kevin Walzer
the language as well. So, thanks again! --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com

Re: window on aqua without a titlebar

2012-12-02 Thread Kevin Walzer
. -- Kevin Walzer Code by Kevin http://www.codebykevin.com

Tkx and xml-rpc

2013-01-23 Thread Kevin Walzer
. Ruby has a module called distributed Ruby (drb) in its core that allows a Ruby program to send messages to a running instance of another Ruby program, even one running Tk; it's really cool. I'd love to see something similar in Perl, and suggestions are appreciated. --Kevin -- Kevin Walzer

Re: Tkx and xml-rpc

2013-01-28 Thread Kevin Walzer
the other. I'm considering rolling my own XML-RPC server on top of the Tkx event loop, setting up a listener via the fileevent API. None of the existing implementations support such a thing. -- Kevin Walzer Code by Kevin http://www.codebykevin.com

Re: Tkx and xml-rpc

2013-01-29 Thread Kevin Walzer
see that XML::RPC::Fast does have an XML::RPC::UA::AnyEvent adapter, but don't know if XML::RPC::Fast has the right features for you. Interesting idea. I'll take a look at this and see if I can get something to work. --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com

Re: Tkx and xml-rpc

2013-01-30 Thread Kevin Walzer
as the XMLRPC server and returned data to a Perl-based client with no trouble. Its license is GPL, which prevents it from being used in a proprietary app, but it's food for thought. I wonder how easy it would be to wrap the package from Perl and call it via Tkx. --Kevin -- Kevin Walzer Code

Tkx socket server can't read input

2013-03-31 Thread Kevin Walzer
. However, I'm unclear what's going on with the error. Can anyone illuminate me? Thanks, Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http

Re: Tkx socket server can't read input

2013-04-03 Thread Kevin Walzer
to go in developing a Perl-Tkx app for the Mac that is commercial quality... -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com

Upating Tcl/Tk installation breaks Tkx?

2013-04-11 Thread Kevin Walzer
provided instead at stringdrill.pl line 3. How can I solve this problem? It doesn't appear that rebuilding/reinstalling Tkx is necessary as cpan tells me my installation is up-to-date. Is there a way to specify the required version of Tk in my Perl script? -- Kevin Walzer Code by Kevin/Mobile

Re: Question on Tkx

2013-04-16 Thread Kevin Walzer
that. Are these built-in icons available to be inserted into my own widgets? If so can I get an example of that? Thanks, Jeremy Palmer Hi Jeremy, These icons are specific to dialogs. They can't be accessed via other means. --Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http

Exposing Tcl commands via Perl Tkx for Apple Event IPC

2014-06-22 Thread Kevin Walzer
, tclAE is not picking up on the Tcl command I'm passing to the Tcl interpreter, and I believe it should. Can anyone suggest how I can get this command exposed cleanly to the Tcl interpreter if I am not doing it correctly? --Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http

Re: Exposing Tcl commands via Perl Tkx for Apple Event IPC

2014-06-23 Thread Kevin Walzer
On 6/22/14, 12:13 PM, Kevin Walzer wrote: tclAE works by allowing you to register specific Apple Events with the system and to register an internal Tcl command that implements the Apple Event functionality. (Externally the command is mapped to an AppleScript command that is registered elsewhere

Re: Dialog widgets and global mode

2014-09-16 Thread Kevin Walzer
this kind of extreme modal dialog (rightly so, I think). --Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com

Re: CreateCommand question

2015-05-08 Thread Kevin Walzer
= shift; selectFileSystem($dname); } Tkx::eval(scriptSetDir, /Users/kevin); Tkx::MainLoop(); This command construction worked best for me: Tkx::i::interp() -CreateCommand( scriptSetDir, \scriptSetDir, undef, undef, '1' ); Thanks, Kevin -- Kevin Walzer Code by Kevin/Mobile Code

CreateCommand question

2015-05-06 Thread Kevin Walzer
scriptSetDir { my $dname = shift; selectFileSystem($dname); } This call produces no output: Tkx::eval(scriptSetDir, /Users/kevin); Any suggestions as to what I am doing wrong? Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com

Wrap Tcl args in Perl subroutne

2015-06-03 Thread Kevin Walzer
. Can anyone show me how to do this--to wrap a Tcl command with args from Perl so that the args are correctly passed to the Tcl interpreter? What is the Perl/Tcl way to access proc cmd {arg1 arg2} so that arg1 and arg2 are not lost? --Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http

Tcl/Tk in par exe

2015-09-20 Thread Kevin Walzer
ar/cache/inc/script, and the Tcl bits are unpacked in the same directory, and I'm setting the appropriate path. However, the app apparently does not see it. Should I park the Tcl bits somewhere else in the archive? If so, any suggestions? --Kevin -- Kevin Walzer Code by Kevin/Mo

Re: Tcl/Tk in par exe

2015-09-22 Thread Kevin Walzer
installed correctly. Can anyone give me some insight on how to do this--where to set up the par installation, how to initialize it in code? Vadim? --Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com

Linking to correct Tcl/Tk frameworks on macOS

2020-11-29 Thread Kevin Walzer
Hello all, I've seen a few email queries on this list (cf. https://www.nntp.perl.org/group/perl.tcltk/2018/08/msg770.html ) about how to link to specific versions of the Tcl/Tk frameworks on macOs if you are using one of the Perl libraries that interface to these frameworks (tkx, tcl::tk, etc.),