Wes Gamble wrote: > If I am writing a method and I want to refer to the instance of the > object itself, do I use "self"? Can I use "this"? Is "this" an alias > for "self"? It's self. There's no alias, but you can say this = self if you want... ;) Hal