You create your own subclass of AbstractNautilusPlugin in where the display method will look like

display
^ mySpec buildWithSpec

This should do the trick

Ben

On 25 Mar 2014, at 08:41, phil@highoctane.be wrote:

I wanted to use a MethodToolbar as part of a Nautilus plugin.

Ok, I can use the widget in with an openWithSpec but how can I put this into a widget that Nautilus will accept as a plugin?


| b |
b := MethodToolbar new.
b openWithSpec.
b method: <method from plugin...>


Phil