On 28 Jan 2014, at 20:47, Benjamin <benjamin.vanryseghem.ph...@gmail.com> wrote:
> On 28 Jan 2014, at 16:43, Sean P. DeNigris <s...@clipperadams.com> wrote: > >> Used to be Browser class>>#newOnClass: aClass selector: aSymbol. How do we do >> it in 3.0? I hunted around but couldn't find exactly that (a lot of other >> browseXyz's though). > > I am not sure to understand correctly but > > Nautilus openOnMethod: (aClass>>#selector) > > might be your answer :) Works great, actually the parenthesis are not needed (binary messages take precedence over keyword messages, but you knew that already): Nautilus openOnMethod: ZnClient>>#get Sven