in reply to Default entry for Tk::BrowseEntry?

The -variable => \$name is the key - $name is writeable, so you can actually say
$name = 'Name3';
and it does what you want.

Replies are listed 'Best First'.
Re^2: Default entry for Tk::BrowseEntry?
by regexes (Hermit) on May 13, 2008 at 08:43 UTC
    Thanks... that solved it. I knew I was missing something. ;-)
Re^2: Default entry for Tk::BrowseEntry?
by timesink (Initiate) on May 07, 2009 at 12:22 UTC
    thank you so much *_*
    I actually tried to change the value by -configure => \$variable
    what DID change the value but the side effects to my project were kinda... bad x_X

    In short: you helped me a lot, thank you very much =)