Re: Custom view attached to a menu bar NSStatusItem application

2009-05-29 Thread Cocoa Dev
I think what you want is something like MAAttachedWindow which can be found at http://mattgemmell.com/source. HTH, Tim 29 maj 2009 kl. 10.37 skrev John Ku: Ah, but that just sets a customView for that particular menu item correct?Im trying to built a full pop up menu from scratch. Im look

Re: Custom view attached to a menu bar NSStatusItem application

2009-05-29 Thread John Ku
Ah, but that just sets a customView for that particular menu item correct?Im trying to built a full pop up menu from scratch. Im looking to change the menu borders, background, add buttons, drop down lists, etc. Its actually less of a menu in terms of function, more of a pop up window that acts lik

Re: Custom view attached to a menu bar NSStatusItem application

2009-05-29 Thread Seth Willits
On May 29, 2009, at 12:46 AM, John Ku wrote: Any alternatives? What direction should I look into? Much Appreciated! How about creating a menu item and using setView: ? -- Seth Willits ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Ple

Custom view attached to a menu bar NSStatusItem application

2009-05-29 Thread John Ku
How do I proceed in creating a custom view/window that is attached and act like an NSMenu for a NSStatusItem.So when the menu bar icon is clicked, this custom view/window will appear right underneath the NSStatusItem. So far im thinking to start with a custom NSWindow and an NSView inside that. Th