Fernando,
I assume you created a class first and defined #new for this class, correct?
If this is the case please doublecheck whether you defined #new on the
instance or the class side; it has to be a class method.
CU,
Udo
Fernando wrote:
> Hi,
>
> I defined a new method like this:
> new
> Transcript show: 'Calling my new'.
> ^ super new initialize
>
> However, it's always skipped. :-? I did accept everything before
> trying it.
>
> What might be causing this? O:-)
>
> Thanks