Been tinkering a lot....
Found the following things out:
* I dropped a dummy TMainMenu with no menu on my main form
* Created a pop-up menu with the items I need (About & Preference).
* Instead of referring to the mailmen I refered to the pop-up menu.
Now I have the following (See attachment).
but I still don't have the [Quit]
procedure TForm_Lint.FormCreate(Sender: TObject);
begin
{$IFDEF DARWIN}
CocoaConfigMenu.appMenu.aboutItem := PUM_Info;
CocoaConfigMenu.appMenu.preferencesItem := PUM_Exit;
CocoaConfigMenu.appMenu.dontAutoCreateItems := True;
{$ENDIF}
end; // FormCreate
P.S. it now says [About test] -=> how to change this? (Does anyone know how to?