Re: Programatically Change NSMenu Title

2008-11-04 Thread Chunk 1978
excellent! this works well, since i don't use the nibtool... i should probably use the nibtool for my next app :) thanks for all the replies On Tue, Nov 4, 2008 at 4:55 PM, Peter Ammon <[EMAIL PROTECTED]> wrote: > > On Nov 4, 2008, at 12:02 PM, Chunk 1978 wrote: > > for localization purposes, i'

Re: Programatically Change NSMenu Title

2008-11-04 Thread Christopher Hickman
On Tuesday, November 04, 2008, at 04:44PM, "Chunk 1978" <[EMAIL PROTECTED]> wrote: >i just found it a lot easier to edit the localizable.strings file than >change the menu items in the nib file... i mean, if i had a program >that is localized in 20 different languages, it would certainly be >easie

Re: Programatically Change NSMenu Title

2008-11-04 Thread Peter Ammon
On Nov 4, 2008, at 12:02 PM, Chunk 1978 wrote: for localization purposes, i'd like to programatically change all of my app's menu item titles. the above code works fine for everything except the menu bar titles (like "File", "Edit", "Window", etc.)... when i click on these objects in I

Re: Programatically Change NSMenu Title

2008-11-04 Thread Chunk 1978
i just found it a lot easier to edit the localizable.strings file than change the menu items in the nib file... i mean, if i had a program that is localized in 20 different languages, it would certainly be easier to edit a text file than the nib... anyway... i've done it with the NSMenuItems, and

Re: Programatically Change NSMenu Title

2008-11-04 Thread Christopher Hickman
On Tuesday, November 04, 2008, at 03:02PM, "Chunk 1978" <[EMAIL PROTECTED]> wrote: >for localization purposes, i'd like to programatically change all of >my app's menu item titles. Generally, you'd accomplish that with localized nibs instead of doing it proramatically. Is there some reason why t

Programatically Change NSMenu Title

2008-11-04 Thread Chunk 1978
for localization purposes, i'd like to programatically change all of my app's menu item titles. #import -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @interface AppController : NSObject { //Main Menu Outlets IBOutlet id MenuItem1; IBOutlet id MenuItem2; } @