Re: Lingering windows

2011-08-10 Thread Shane Stanley
. I suspect it's on the right track. -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Lingering windows

2011-08-09 Thread Shane Stanley
on the window, followed by windowWillClose: on the delegate, and then orderOut on the window. Any thoughts/suggestions? -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list

Re: Lingering windows

2011-08-09 Thread Shane Stanley
. -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

Re: Lingering windows

2011-08-09 Thread Shane Stanley
-roots' command (having set a breakpoint somewhere after the window has been closed and the collector has had time to run, preferably) to find out what's keeping the window alive. Thanks for the suggestion. -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored

Re: Lingering windows

2011-08-09 Thread Shane Stanley
: 0x000400efa2e0 2 Kind: object rc: 0 Address: 0x0004011fcca0 Class: MyWindow Anything useful there? -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list (Cocoa

Re: Lingering windows

2011-08-09 Thread Shane Stanley
to get a picture of what's going on is to use heapshot analysis: http://www.friday.com/bbum/2010/10/17/when-is-a-leak-not-a-leak-using-heapshot-analysis-to-find-undesirable-memory-growth/ Thanks for the further ideas. I think ;-) -- Shane Stanley sstan...@myriad-com.com.au

Re: NSTask oddity with getting stdout

2011-07-26 Thread Shane Stanley
On 26/7/11 1:14 AM, Scott Ribe scott_r...@elevated-dev.com wrote: On Jul 25, 2011, at 3:40 AM, Shane Stanley wrote: I wonder if they've changed how the readInBackgroundAndNotify works. Yes, they have. I logged a bug on it, and was told that the way it worked in 10.6 was wrong -- whereas

Re: NSTask oddity with getting stdout

2011-07-26 Thread Shane Stanley
into a loop; each time readInBackgroundAndNotify is sent, a new notification comes straight back. -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list (Cocoa-dev

Re: NSTask oddity with getting stdout

2011-07-25 Thread Shane Stanley
there was something to read, it now returns one immediately regardless. Whether that's the problem here, I don't know. -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list

Re: Properly comparing file NSURLs for equality?

2011-05-27 Thread Shane Stanley
of the docs. -- Shane Stanley sstan...@myriad-com.com.au 'AppleScriptObjC Explored' www.macosxautomation.com/applescript/apps/ ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

Re: Make checkbox in table view uneditable

2010-09-15 Thread Shane Stanley
in this case. I guess I was just taken by surprise that there's no simple way. -- Shane Stanley sstan...@myriad-com.com.au ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

Make checkbox in table view uneditable

2010-09-14 Thread Shane Stanley
. Is there some other way I can make a column of checkboxes uneditable, or is this a bug? -- Shane Stanley sstan...@myriad-com.com.au ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments

Re: Make checkbox in table view uneditable

2010-09-14 Thread Shane Stanley
) you must disable it. Thanks. I guess it boils down to the fact that a checkbox is a bad choice for just showing a binary state in a table. -- Shane Stanley sstan...@myriad-com.com.au ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: delayed NSWorkspaceDidTerminateApplicationNotification under 10.6?

2010-09-08 Thread Shane Stanley
is fixed, but for others (for example, those that support plug-ins) it can vary, in which case launching the app is unavoidable. -- Shane Stanley sstan...@myriad-com.com.au ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Re: Private ivars, not marked as IBOutlet, visible in IB

2010-03-01 Thread Shane Stanley
rather badly... -- Shane Stanley sstan...@myriad-com.com.au AppleScript Pro, April 2010, Florida http://www.applescriptpro.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

Re: Unable to get animation of NSProgressIndicator on my custom view (subclassed)

2010-01-15 Thread Shane Stanley
the animation of an indeterminate progress indicator. - (void)startAnimation:(id)sender Parameters sender The object sending the message. Discussion Does nothing for a determinate progress indicator. -- Shane Stanley sstan...@myriad-com.com.au AppleScript Pro, April 2010, Florida http

Re: Alternative KVC accessors

2010-01-02 Thread Shane Stanley
in ASObjC... -- Shane Stanley sstan...@myriad-com.com.au AppleScript Pro, April 2010, Florida http://www.applescriptpro.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

Re: Alternative KVC accessors

2010-01-01 Thread Shane Stanley
whether the reference to booleans is purely stylistic. Anyway, what I'm really asking is whether I'm likely to strike unforeseen problems using the equivalent of -isKey or -getKey instead of -key. -- Shane Stanley sstan...@myriad-com.com.au AppleScript Pro, April 2010, Florida http

Alternative KVC accessors

2009-12-31 Thread Shane Stanley
is found it is invoked. This suggests that all three patterns are supported. So am I likely to run into problems if I write accessors as -getKey or -isKey for properties that have synthesized accessors? And yes, there's a good reason for wanting to... -- Shane Stanley sstan...@myriad-com.com.au

<    1   2   3