Removing the InfoOutlet; bug or doing something wrong?

ShelLuser's icon

Hi gang,

Finally getting my hands serious into Java programming for Max (5), basically to support some of my Max for Live projects.

I'd like my object not to have any outlets at all because its only processing incoming data internally. As such I tried using this in the class constructor but it seems Max is ignoring it:

createInfoOutlet(false);

However the info outlet remains visible. Is there something I'm doing wrong or has this behaviour changed in the mean time?

Using the latest Java SE6 btw.

nick rothwell | project cassiel's icon

You no longer have the info outlet, but you have the default normal outlet. Try adding

declareOutlet(NO_OUTLETS)

as well. (Code snippet transcribed from page XVI of The Chronicles of Topher La Fata, MMIV AD.)

ShelLuser's icon

Hello Nick,

Thanks for your quick comment and well spotted! Indeed; that was the thing I completely overlooked. Added this in the constructor and all is well now.

Thanks again!