64 bit vst Textbutton

Is there something special with the Textbutton for Mac (64 bits)? In 32 bits all works fine, but in 64 bits the Textbuttons do not listen to mouseclicks.

The code used:


BackButton = new TextButton(String("BackButton"));
addAndMakeVisible(BackButton);
BackButton->setBounds(711,280,30,30);
BackButton->setClickingTogglesState(true);
BackButton->addListener(this);

Sounds like an objective-c name clash… try using the very latest tip where the extra obj-c-suffix is no longer needed.

That was correct. I had the idea I was not that far behind. Thanks!