in reply to [Tkx] Scrolled frame problem

sebapabst,

Looking at this:

#=begin my $s = $logfrm->new_ttk__scrollbar(-orient => 'vertical', -comman +d => [$loglbl, 'yview']); $loglbl->configure(-scrollcommand => [$s, 'set']);

... it looks like you're trying to create a scrollbar from your Frame widget, but then you call configure on your Label widget, which is probably not what you want to do.

However, I don't think fixing that resolves your problems. Looking through the docs for the Frame widget, there's no --scrollcommand option. The Frame widgets, frustratingly, cannot have scrollbars added to them. I tried for a while to figure out a way to make it happen the last time I used Tkx, but ended up redesigning my GUI so I didn't need a scrollable Frame.

-- baldmantom