in reply to Perl::Tk Is it possible to configure "anonymous" widgets?
Assuming you are talking about the configure() method, the answer is no. Consider:
$widget->configure(option => 'value');
It's $widget invoking the configure() method. Without $widget, Tk wouldn't know what to configure.
"And can I get the input, lets say from the fith Entry-widget?"
Not using the code you have there. You'd need to store them in an array then access $entry_widgets[4].
-- Ken
|
|---|