in reply to Re^3: Accessing variables in a runtime-loaded module
in thread Accessing variables in a runtime-loaded module

You don't need a package variable: you need an acccessor method. Global variables suck. :)

my $description = 'foo'; sub description { $description }
--
brian d foy <brian@stonehenge.com>