Re: Strange renaming of Documents folder

2012-01-21 Thread Ken Thomases
On Jan 21, 2012, at 6:17 PM, John Joyce wrote: > To best verify this yourself, create a new user account on a Mac, set Spanish > to the top of the list of preferred languages in System Preferences > Text & > Language > Log out, log back in to that user to ensure that all apps and processes in >

Re: NSSlider and arrangedObjects

2012-01-21 Thread Quincey Morris
On Jan 21, 2012, at 00:54 , Ken Thomases wrote: > Table columns do have special handling for array-valued bindings. It's that > they distribute the array values among their rows. Table columns are not > special in being able to bind through collection properties. That's a > feature of NSArra

Re: Strange renaming of Documents folder

2012-01-21 Thread John Joyce
On Jan 21, 2012, at 6:09 PM, Ken Thomases wrote: > On Jan 21, 2012, at 7:32 AM, Martin Hewitson wrote: > >> I have a user that has been using a document based app of mine and they are >> reporting something very strange. >> >> The user is Spanish and so had a "Documentos" folder in his home di

Re: Strange renaming of Documents folder

2012-01-21 Thread Ken Thomases
On Jan 21, 2012, at 7:32 AM, Martin Hewitson wrote: > I have a user that has been using a document based app of mine and they are > reporting something very strange. > > The user is Spanish and so had a "Documentos" folder in his home directory. > He created a new document in this app then went

Re: auto malloc[27012]: attempted to remove unregistered weak referrer

2012-01-21 Thread Sean McBride
On Fri, 20 Jan 2012 15:41:59 -0800, Corbin Dunn said: >> In my GC app, I haven't seen this, but am having various problems with >>NSOpenPanel... half the time, it shows nothing. > >I don't know if I saw a report on this come through. Did you log a bug on it? Corbin, 10.7: NSOpenPanel is often h

Re: Versions, -windowWillClose:

2012-01-21 Thread Mike Abdullah
On 3 Jan 2012, at 15:25, Martin Hewitson wrote: > Dear list, > > I'm investigating getting the new 10.7 Versions stuff working on my > NSPersistentDocument app. In doing that, I've seen a couple of strange things > which I wanted to check on. > > Firstly, all I've done to make it work is to

Re: Cocoa-dev Digest, Vol 9, Issue 32

2012-01-21 Thread lpeng...@gmail.com
Re: NSTextView : Scroll top when bound-to string changes (Jerry Krinock) Jim Lin 在 2012-1-21,4:00,cocoa-dev-requ...@lists.apple.com 写道: > Re: NSTextView : Scroll top when bound-to string changes > (Jerry Krinock) ___ Cocoa-dev mailing list

Re: Cocoa-dev Digest, Vol 9, Issue 34

2012-01-21 Thread lpeng...@gmail.com
Subject: Re: auto malloc[27012]: attempted to remove unregistered weak referrer Message-ID: <5c732f8d-655e-44bb-abf2-ed258af99...@snafu.org> Content-Type: text/plain; charset=us-ascii Jim Lin 在 2012-1-21,13:18,cocoa-dev-requ...@lists.apple.com 写道: > Subject: Re: auto malloc[27012]: attempted

Re: Cocoa-dev Digest, Vol 9, Issue 33

2012-01-21 Thread lpeng...@gmail.com
Re: NSTextView : Scroll top when bound-to string changes Message-ID: Content-Type: text/plain; charset=ISO-8859-1 Jim Lin 在 2012-1-21,5:13,cocoa-dev-requ...@lists.apple.com 写道: > Re: NSTextView : Scroll top when bound-to string changes > Message-ID: > > Content-Type: text/plain; charset=

Re: Cocoa-dev Digest, Vol 9, Issue 33

2012-01-21 Thread lpeng...@gmail.com
Re: [NSTextView]: Scroll top when bound-to string changes (Kyle Sluder) Jim Lin 在 2012-1-21,5:13,cocoa-dev-requ...@lists.apple.com 写道: > NSTextView : Scroll top when bound-to string changes > (Kyle Sluder) ___ Cocoa-dev mailing list (Cocoa-

Re: When in Versions browser

2012-01-21 Thread Mike Abdullah
On 21 Jan 2012, at 09:33, Martin Hewitson wrote: > Dear list, > > I'm trying to get Versions and autosave working on my document app. Most > things are working. I'm using the window delegate methods > > - (void)windowWillEnterVersionBrowser:(NSNotification *)notification; > - (void)windowDidEx

Strange renaming of Documents folder

2012-01-21 Thread Martin Hewitson
Dear list, I have a user that has been using a document based app of mine and they are reporting something very strange. The user is Spanish and so had a "Documentos" folder in his home directory. He created a new document in this app then went to save it. In the "Where" part of the save dialo

Re: NSSlider and arrangedObjects

2012-01-21 Thread Tobias Wood
Thanks for the responses guys, I think I follow most of it. My documents for this app are essentially movies (4D images, the 4th dimension is time). I want this particular slider to set the timepoint for all open documents, in a 'write only' fashion. Currently there is no UI to set the timepoin

When in Versions browser

2012-01-21 Thread Martin Hewitson
Dear list, I'm trying to get Versions and autosave working on my document app. Most things are working. I'm using the window delegate methods - (void)windowWillEnterVersionBrowser:(NSNotification *)notification; - (void)windowDidExitVersionBrowser:(NSNotification *)notification; to enable and d

Re: NSSlider and arrangedObjects

2012-01-21 Thread Ken Thomases
On Jan 21, 2012, at 1:00 AM, Quincey Morris wrote: > On Jan 19, 2012, at 03:03 , Tobias Wood wrote: > >> Binding the NSSlider's value to the NSArrayController's >> "arrangedObjects.propertyName" causes my program to get a SIGABRT on >> opening, with the following uncaught exception: >> "Cannot

Re: NSSlider and arrangedObjects

2012-01-21 Thread Quincey Morris
On Jan 19, 2012, at 03:03 , Tobias Wood wrote: > I am attempting to bind an NSSlider to a property of every object in an > NSArrayController, rather than just the current selection. There are other > properties that are bound to the selection, but this particular one I want to > change for ever