in reply to Tkx ttk problem

I think it depends on your version of Tcl, http://wiki.tcl.tk/11075
The following instructions are for the Tile package, not for the ttk included in Tk 8.5. There are subtle differences, such as tile::setTheme becoming ttk::setTheme and others.
So for Tcl 8.5 I usually needed
use Tkx; $Tkx::TRACE=64; Tkx::package_require('tile'); Tkx::ttk__setTheme('xpnative');#Tkx::tile__setTheme('xpnative');
Your code however works fine with Tcl 8.5

Replies are listed 'Best First'.
Re^2: Tkx ttk problem
by igoryonya (Pilgrim) on Dec 24, 2009 at 07:58 UTC
    Your code however works fine with Tcl 8.5

    Are you talking about the code that doesn't work for me (the first one, or the second one that works for me?

    are you talking about the one with ttk or without?
      Both version of your code work with 8.5
Re^2: Tkx ttk problem
by igoryonya (Pilgrim) on Dec 24, 2009 at 08:17 UTC
    By version of TCL, do you mean I need to update the TCL module in Perl or do I need to install the new version of TCL itself (I use ActiveState TCL)