in reply to text->tagBind() question
Perl reparses this as:$myobject->do_something( $arg1, $arg2, @rest );
and then otherwise treats this as a normal function. Thus, to get the actual object that you are working on, typically called "$self", you simple shift out the first argument that is passed to that function.do_something( $myobject, $arg1, $arg2, @rest );
So you're doing everything correctly; that first line is basically necessary to work with objects in perl.
-----------------------------------------------------
Dr. Michael K. Neylon - mneylon-pm@masemware.com
||
"You've left the lens cap of your mind on again, Pinky" - The Brain
"I can see my house from here!"
It's not what you know, but knowing how to find it if you don't know that's important
|
---|