in reply to Re: Tk DirSelect Buttons
in thread Tk DirSelect Buttons

Thank you. I used WidgetDump and got I 'display' that showed the OK button was in a tree of
dirselect->frame1->button
and the Cancel button was in a tree
dirselect->frame1->button1

I tried using the line
$ds->frame1->button->configure(-command => [\&OK_cb]);
to associate the sub OK_cb with the OK button. However, I got the error message

Failed to AUTOLOAD 'Tk::DirSelect::frame1' at C:\radan-docs\radan-f\perlwork\programs\atest_x_select.pz line 14.

pryrt suggestion has worked and let me get the selected directory but it would be good to know how to associate the sub OK_cb so that I can look at other things I may want to alter.

Replies are listed 'Best First'.
Re^3: Tk DirSelect Buttons
by Anonymous Monk on Apr 19, 2018 at 23:01 UTC

     $ds->frame1->button->configure

    What docs are you reading? Try ->Subwidget or ->children to find the window/object you're after