This latest error isn't your fault. It's trying to add items to the Help menu but I would guess that the Help menu on your system is named something other than "Help." In that case, it appears in the objective-c source that it will fail to find the menu and return a wrong type error. As a temporary workaround, go into OSXPlatform and comment out this line from the startup method: Help.addToMenu; Scott W, whoever else was working on the help tree, seems to me we at least need to put *addToMenu in a try block and post a warning on failure. This kind of thing shouldn't be fatal. Beyond that, locale awareness would be nice but I have no idea how to do it. Maybe there is an alternative to itemWithTitle here? Or the obj-c layer might have access to the system locale. if (strcmp(parentSymbol->name, "Help")==0) { parentMenu = [[[NSApp mainMenu] itemWithTitle:@"Help"] submenu]; } hjh On Dec 26, 2008, at 2:27 AM, Usami Tadashi wrote: Sorry to bother you over and over again... : H. James Harkins .::!:.:.......:.::........:..!.::.::...:..:...:.:.:.:..: "Come said the Muse, Sing me a song no poet has yet chanted, Sing me the universal." -- Whitman |