From: news [mailto:[EMAIL PROTECTED]
> Hi Cocoon developers,
>
> I just updated from 2.1-M1 to 2.1 and noticed that the
> inputModuleGetAttribute() function is no longer supported.
Yep
legacy support for cocoon.input("..") and cocoon.act("..")
has not been implemented yet
> The purpose of the input module call was to obtain an
> object from a custom Avalon component.
>
> The FOM does not provide access to input modules, does it?
> So, what is the recommended way to get an object from an
> Avalon component?
var myComp = cocoon.getComponent("myComp.ROLE");
var myObj = myComp.mymethod();
Cheers,
Reinhard