Re: How can I make a window just like the Anxiety App?

2011-02-21 Thread Bavarious
On 21/02/2011, at 02:53, Graham Cox wrote: > While I have wholeheartedly recommended BWToolKit in the past, a word of > warning: If you use it "as is" your app will fail App Store approval due to > use of undocumented/private API. > > I've contacted Brandon about this but haven't heard back. Yo

Re: How can I make a window just like the Anxiety App?

2011-02-21 Thread 23Labs
Thanks all. You're quite helpful. I'm quite new to Mac development, I don't even know about bwtoolkit. It's a very cool and helpful plugin. If I use bwtoolkit in my app, do I violate Mac App Store's term if I submit it to the store? ___ Cocoa-dev mailin

Re: How can I make a window just like the Anxiety App?

2011-02-21 Thread Gleb Dolgich
I created a fork of BWToolkit with an added target for Mac App Store which has private APIs conditionally removed; our app Decloner that uses it is in the App Store. https://github.com/glebd/bwtoolkit -- Gleb Dolgich PixelEspresso http://www.pixelespressoapps.com On 21 Feb 2011, at 05:53, Gr

Re: How can I make a window just like the Anxiety App?

2011-02-20 Thread Kyle Sluder
On Sun, Feb 20, 2011 at 9:39 PM, John Joyce wrote: > See how here: > http://tinyurl.com/67r8oaz I don't believe a custom window is necessary for this. You can use -[NSWindow standardWindowButton:] with the NSWindowDocumentIconButton to get a handle to the button that draws the proxy icon and win

Re: How can I make a window just like the Anxiety App?

2011-02-20 Thread Graham Cox
While I have wholeheartedly recommended BWToolKit in the past, a word of warning: If you use it "as is" your app will fail App Store approval due to use of undocumented/private API. I've contacted Brandon about this but haven't heard back. --Graham On 21/02/2011, at 4:48 PM, Tito Ciuro wrot

Re: How can I make a window just like the Anxiety App?

2011-02-20 Thread Tito Ciuro
Take a look at this too. Lots of goodies: http://brandonwalkin.com/bwtoolkit/ -- Tito On Feb 20, 2011, at 2:51 AM, 23Labs wrote: > You can see the screenshot > here > . > Anxiety app has a window title which can be clicked and then popups a men

Re: How can I make a window just like the Anxiety App?

2011-02-20 Thread John Joyce
On Feb 20, 2011, at 7:51 PM, 23Labs wrote: > You can see the screenshot > here > . > Anxiety app has a window title which can be clicked and then popups a menu > list. > I can't find any clue in IB. There seems no way we can customize the window

How can I make a window just like the Anxiety App?

2011-02-20 Thread 23Labs
You can see the screenshot here . Anxiety app has a window title which can be clicked and then popups a menu list. I can't find any clue in IB. There seems no way we can customize the window title bar in IB. So how can I achieve this? Thanks.