in reply to How do I reference a variable?

In the documentation of the Tk Entry widget (Tk::Entry) I found the following entry:
$entry->get Returns the entry's string.

Maybe this is what you're looking for. Another thing I found was in Tk::options:

$value = $widget->cget('-option');

Arjen