Re: There must be a live human at Apple?

2013-08-02 Thread Michael Crawford
I'm not looking for anything of any sort back from my former corporation. As I said, to get caught doing so, and I'd be doing time. What I'm trying to do, is to use my own personal name, address, phone number and my GMail, to register as an Individual. But because I, with all that same info, onc

Re: There must be a live human at Apple?

2013-08-02 Thread Michael Crawford
Thanks Alex, I'll call in a few minutes, but it may be after hours. I've always known the Apple main switchboard number, so I can call any Apple employee if I know their name. I've always know that a new Apple ID would work around this problem, but to the extent I possibly can, I prefer to stay

Re: There must be a live human at Apple?

2013-08-02 Thread Scott Ellsworth
+list I understand your frustration, but I do not see this as that big a deal to Apple. The total opportunity cost to them of their web app not supporting this change does not sound like something that would move a $13B/quarter profit needle. After all, you can get what you want from a new $100

Re: There must be a live human at Apple?

2013-08-02 Thread Michael Crawford
Hunter, I used the contact link on that Account Management page about a week ago. Of rather more concern to me, is that I filed a Radar two and a half months ago, and no one has responded in any way. This leads me to believe that Apple does not triage reports having to do with their web applicat

Re: There must be a live human at Apple?

2013-08-02 Thread Alex Zavatone
Call up Apple and ask them yourself. i did yesterday. https://developer.apple.com/contact/phone.php On Aug 2, 2013, at 6:09 PM, Michael Crawford wrote: > Leaving Money On The Table Is Bad, MMKay? > > Could get a live human at Apple to change my iOS Developer type from > Corporate to Individual

Re: There must be a live human at Apple?

2013-08-02 Thread Hunter Hillegas
Not sure why you don’t just use a different/new Apple ID to sign up for the iOS dev program but let’s say you can’t or don’t want to do that for whatever reason, you need to read this page: https://developer.apple.com/support/ios/account-management.html and use the contact link there to get in

Re: There must be a live human at Apple?

2013-08-02 Thread Michael Crawford
> Is there a question in here anywhere? Yes. I'd like someone in Apple's QA - anyone at all - to dig up and read the MacTCP 1.1 Test Plan that I wrote back around 1990 - or maybe it was 1.2, I don't recall now. Were anyone at Apple to write test plans like that in any way, maybe I would not file

Re: How To Bind The Enabled Property of NSPopUpButtonCell Menu Items

2013-08-02 Thread Chris Tracewell
I took a look, thanks for the files. I had both deselected already, still makes no difference. I created a new project and rolled a stripped down version and it acted the same way. I can't see how bindings and validateMenuItem can work together in this scenario. I'm going to try catching change

There must be a live human at Apple?

2013-08-02 Thread Michael Crawford
Leaving Money On The Table Is Bad, MMKay? Could get a live human at Apple to change my iOS Developer type from Corporate to Individual? My Apple ID is: mdcrawf...@gmail.com My Corporate membership expired well over a year ago. My board of directors totally bailed on me. While there are som

Re: How To Bind The Enabled Property of NSPopUpButtonCell Menu Items

2013-08-02 Thread Lee Ann Rucker
NSMenuItem. I noticed that the NSPopUpButtonCell also has an autoenables items flag; a quick bit of hacking on the ButtonMadness sample app shows that needs to be off too. I'll send you the files off-list. On Aug 2, 2013, at 1:56 PM, Chris Tracewell wrote: > Thanks for the suggestion, I had alr

Re: How To Bind The Enabled Property of NSPopUpButtonCell Menu Items

2013-08-02 Thread Keary Suska
On Aug 2, 2013, at 2:56 PM, Chris Tracewell wrote: > Thanks for the suggestion, I had already done that to no avail. Where should > I be binding the enabled property? NSPopUpButtonCell or NSMenuItem? You may also set the table view's delegate and implement tableView:willDisplayCell:forTableColu

Re: How To Bind The Enabled Property of NSPopUpButtonCell Menu Items

2013-08-02 Thread Chris Tracewell
Thanks for the suggestion, I had already done that to no avail. Where should I be binding the enabled property? NSPopUpButtonCell or NSMenuItem? CT On Aug 2, 2013, at 1:33 PM, Lee Ann Rucker wrote: > Turn off "Auto Enables Items" in the popup's menu. If it's on it goes through > menu valid

Re: How To Bind The Enabled Property of NSPopUpButtonCell Menu Items

2013-08-02 Thread Lee Ann Rucker
Turn off "Auto Enables Items" in the popup's menu. If it's on it goes through menu validation instead of bindings. On Aug 2, 2013, at 1:12 PM, Chris Tracewell wrote: > I've got a two column NSTableView that is bound to an array controller. Each > of the elements in the array looks something lik

How To Bind The Enabled Property of NSPopUpButtonCell Menu Items

2013-08-02 Thread Chris Tracewell
I've got a two column NSTableView that is bound to an array controller. Each of the elements in the array looks something like this... NSMutableDictionary *theDictionary = [NSMutableDictionary dictionaryWithDictionary: @{@"myOptions":theOptionArray,@"myTitle": theTitle}]; Column 1 is bound to m

Re: Storing an NSImage File

2013-08-02 Thread Gordon Apple
That¹s a good point. The main thing is to use a format that is lossless and easily converted. Next question. Does anyone know how to get a PieceInfo Dictionary (if it exists) out of a PDFDocument or PDFPage? Do I have to go outside of Cocoa to get this? On 8/2/13 12:28 PM, "Jens Alfke" wrote

Re: Storing an NSImage File

2013-08-02 Thread Jens Alfke
On Aug 2, 2013, at 10:21 AM, Alex Zavatone wrote: >> The only difference between the various bitmap image formats is the space >> they take up on disk, and whether they use lossy or lossless compression on >> disk. If you want to make sure no data is lost, a losslessly compressed or >> uncomp

Re: Storing an NSImage File

2013-08-02 Thread Alex Zavatone
On Aug 2, 2013, at 12:55 PM, Uli Kusterer wrote: > On Aug 2, 2013, at 6:23 PM, Gordon Apple wrote: >> I have a need to store an NSImage (possibly from a pasteboard) as standard >> file type. As a last resort, I just archive the NSImage as a private type, >> I have figured out how to recognize a

Re: NSMenuItemCell setMenuItem does not retain?

2013-08-02 Thread Steve Mills
On Aug 2, 2013, at 11:47:16, Uli Kusterer wrote: > You shouldn't have to use that method on a popup button cell. Instead, use > setMenu: to set the whole menu, and setSelectedItem: to select that > particular item. That's not how it's being used in this case. It's setting it to a custom string

Re: Exiting non-POSIX threads?

2013-08-02 Thread Jens Alfke
On Jul 30, 2013, at 2:32 AM, j.carlson wrote: > In my case, the exception has already been thrown inside the block and > I cannot catch it or modify it in any way in my handler. I'm basically > writing an uncaught exception handler. My app should show a crash > report window and then terminate i

Re: Storing an NSImage File

2013-08-02 Thread Uli Kusterer
On Aug 2, 2013, at 6:23 PM, Gordon Apple wrote: > I have a need to store an NSImage (possibly from a pasteboard) as standard > file type. As a last resort, I just archive the NSImage as a private type, > I have figured out how to recognize a NSPDFImageRep and store as a .pdf, > which I need becau

Re: NSMenuItemCell setMenuItem does not retain?

2013-08-02 Thread Uli Kusterer
On Aug 2, 2013, at 4:36 PM, Steve Mills wrote: > Oh, it's actually an NSPopUpButtonCell, which is based on NSMenuItemCell. I > don't see anything in the docs about not using one of those. You shouldn't have to use that method on a popup button cell. Instead, use setMenu: to set the whole menu,

Storing an NSImage File

2013-08-02 Thread Gordon Apple
I have a need to store an NSImage (possibly from a pasteboard) as standard file type. As a last resort, I just archive the NSImage as a private type, I have figured out how to recognize a NSPDFImageRep and store as a .pdf, which I need because of certain metadata which needs to be preserved. But

Re: NSMenuItemCell setMenuItem does not retain?

2013-08-02 Thread Steve Mills
On Aug 2, 2013, at 09:16:54, Uli Kusterer wrote: > The menu item owns the cell, so I doubt the cell retains the menu item, as > you'd get a retain circle. Are you sure about that? I don't see any methods that mention the cell in NSMenuItem. > Also, I thought NSMenuItemCell had been deprecate

Re: NSMenuItemCell setMenuItem does not retain?

2013-08-02 Thread Uli Kusterer
On Aug 2, 2013, at 3:01 PM, Steve Mills wrote: > Is setMenuItem supposed to retain the item? We have some code written quite a > while ago that looks like: The menu item owns the cell, so I doubt the cell retains the menu item, as you'd get a retain circle. Also, I thought NSMenuItemCell had b

NSMenuItemCell setMenuItem does not retain?

2013-08-02 Thread Steve Mills
Is setMenuItem supposed to retain the item? We have some code written quite a while ago that looks like: - (id)copyMixedCellForTableColumn:(NSTableColumn*)tableColumn withText:(FinUString)text { NSMenuItem* menuItem = [[[NSMenuItem alloc] initWithTitle:[NSString stringWithFinUString