Re: Question about hebrew in textfields and textviews

2012-04-15 Thread Jeffrey Oleander
Kyle Sluder k...@ksluder.com 2012-04-11 12:26 wrote: On 2012 Apr 11, at 10:17, Matthew Weinstein mwein...@kent.edu wrote: Thanks for all the replies. Unfortunately NSNaturalTextAlignment doesn't seem to affect the justification of the textfields. Try creating a simple project and simply put

Re: Question about hebrew in textfields and textviews

2012-04-12 Thread Aviah Morag
First of all, it's true that having fields with natural directionality will give you the proper runtime directionality (RTL/LTR) depending on the language in which the user is typing. To my knowledge, that doesn't affect the alignment (left/right), even if it would make sense for it to do so.

Re: Question about hebrew in textfields and textviews

2012-04-12 Thread Kyle Sluder
On Apr 12, 2012, at 12:11 AM, Lee Ann Rucker lruc...@vmware.com wrote: That's interesting, because the doc disagrees: Text using NSNaturalTextAlignment is actually displayed using one of the other alignments, depending on the natural alignment of the text’s script. You're looking at the

Re: Question about hebrew in textfields and textviews

2012-04-12 Thread Lee Ann Rucker
On Apr 12, 2012, at 8:12 AM, Kyle Sluder wrote: On Apr 12, 2012, at 12:11 AM, Lee Ann Rucker lruc...@vmware.com wrote: That's interesting, because the doc disagrees: Text using NSNaturalTextAlignment is actually displayed using one of the other alignments, depending on the natural

Question about hebrew in textfields and textviews

2012-04-11 Thread Matthew Weinstein
Dear Cocoa-devs, Working with a person using hebrew input method. Text appears right-to-left as desired, but all of the textfields and textviews are still left justfiied, so it looks a little weird. Is there something I need to do so that when users are using Arabic or Hebrew everything

Re: Question about hebrew in textfields and textviews

2012-04-11 Thread Keary Suska
On Apr 11, 2012, at 9:36 AM, Matthew Weinstein wrote: Working with a person using hebrew input method. Text appears right-to-left as desired, but all of the textfields and textviews are still left justfiied, so it looks a little weird. Is there something I need to do so that when users are

Re: Question about hebrew in textfields and textviews

2012-04-11 Thread Fritz Anderson
On 11 Apr 2012, at 10:36 AM, Matthew Weinstein wrote: Working with a person using hebrew input method. Text appears right-to-left as desired, but all of the textfields and textviews are still left justfiied, so it looks a little weird. Is there something I need to do so that when users are

Re: Question about hebrew in textfields and textviews

2012-04-11 Thread Lee Ann Rucker
Try NSNaturalTextAlignment - Original Message - From: Keary Suska cocoa-...@esoteritech.com To: Matthew Weinstein mwein...@kent.edu Cc: cocoa-dev@lists.apple.com Sent: Wednesday, April 11, 2012 9:54:50 AM Subject: Re: Question about hebrew in textfields and textviews On Apr 11, 2012

Re: Question about hebrew in textfields and textviews

2012-04-11 Thread Matthew Weinstein
Thanks for all the replies. Unfortunately NSNaturalTextAlignment doesn't seem to affect the justification of the textfields. Try creating a simple project and simply put a textfield and textview in the window in MainMenu.xib. Changing the input to hebrew, running the program does change the

Re: Question about hebrew in textfields and textviews

2012-04-11 Thread Kyle Sluder
On Apr 11, 2012, at 10:17 AM, Matthew Weinstein mwein...@kent.edu wrote: Thanks for all the replies. Unfortunately NSNaturalTextAlignment doesn't seem to affect the justification of the textfields. Try creating a simple project and simply put a textfield and textview in the window in