in reply to OO Perl and AUTOLOAD

I think what you want at the very end of your AUTOLOAD method is

# don't turn strict 'refs' back on return $self ->$AUTOLOAD(@_);
or better yet
unshift @_, $self; goto &$AUTOLOAD;

Update: fixed unshift typo.

the lowliest monk