Re: WWDC

2012-04-25 Thread Mark D. Gerl
Incorrect. Moscone West Conference Center is not same venue as North/South Convention Center. Apple sells to Fire-Marshall capacity of the venue. Mark Sent from my iOS device On Apr 25, 2012, at 1:45 PM, Rob Ross rob.r...@gmail.com wrote: Java One regularly had 15,000 in its heyday, at the

Re: Can't get setDelegate to work on NSMenu attached to NSStatusItem

2009-03-04 Thread Mark D. Gerl
On Mar 3, 2009, at 2:30 PM, Mark D. Gerl wrote: On Mar 3, 2009, at 11:52 AM, Nick Zitzmann wrote: Can you please show your code? I've done this before, and it worked when I tried it. SURE, see below. I should point out that I've also tried implementing other delegate methods

Checking for NULL (was Re: Can't get setDelegate to work...)

2009-03-04 Thread Mark D. Gerl
that's just uncomfortable about dereferencing pointers without first checking for validity. Is it just me? M M -- Mark D. Gerl, Multimedia Design Group, mailto:mg...@mmdesigngrp.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: Can't get setDelegate to work on NSMenu attached to NSStatusItem (SOLVED)

2009-03-04 Thread Mark D. Gerl
On Mar 3, 2009, at 2:30 PM, Mark D. Gerl wrote: // *** DOING this causes the menu to NOT pop down *** [menu setDeligate:menuController]; DOH! Spelling error. I never noticed the wee warning triangle next to the call - I spelled delegate wrong. I do miss C++ compiler

Re: Can't get setDelegate to work on NSMenu attached to NSStatusItem (SOLVED)

2009-03-04 Thread Mark D. Gerl
working with a larger beast that has plenty of benign but odd warnings that I'm not authorized to spend the time removing. Sigh. Thanks again, for all the good advice from everyone. M -- Mark D. Gerl, Multimedia Design Group, mailto:mg...@mmdesigngrp.com

Re: Checking for NULL (was Re: Can't get setDelegate to work...)

2009-03-04 Thread Mark D. Gerl
for nil; as you mention. You have to respond/react to all alternate/undesirable/fringe cases in code - and bring it to the engineer's attention. Just some of the coding behaviors that I've learned along the way. Food for thought. Thanks! M -- Mark D. Gerl, Multimedia Design Group, mailto:mg

Can't get setDelegate to work on NSMenu attached to NSStatusItem

2009-03-03 Thread Mark D. Gerl
reversed engineered private classes, but it seems to me that the api is there to do what I need, between NSMenu and NSStatusItem. What, pray tell, am I doing wrong? TIA, M -- Mark D. Gerl, Multimedia Design Group, mailto:mg...@mmdesigngrp.com ___ Cocoa

Re: Can't get setDelegate to work on NSMenu attached to NSStatusItem

2009-03-03 Thread Mark D. Gerl
:9]; [item autorelease]; // *** DOING this causes the menu to NOT pop down *** [menu setDeligate:menuController]; [statusItem setMenu:menu]; } Thanks, M -- Mark D. Gerl, Multimedia