Re: Hiding NSImageView

2008-06-01 Thread Damien Cooke
Thanks guys, What I did was to set the views setHidden property to YES. This is doing exactly what I wanted. Thanks for the assistance. Regards Damien On 02/06/2008, at 8:25 AM, Mark Munz wrote: Careful - tabless NSTabViews are a much bigger pain to traverse under IB3 (a step backwards fr

Re: Hiding NSImageView

2008-06-01 Thread Mark Munz
Careful - tabless NSTabViews are a much bigger pain to traverse under IB3 (a step backwards from IB2). There are several simple approaches to help resolve this issue. Call [btn setHidden:YES]; to hide the view (10.3 or later). If you're looking to just change the btn size, you can call setFrameS

Re: Hiding NSImageView

2008-06-01 Thread Hamish Allan
On Sun, Jun 1, 2008 at 11:07 PM, Damien Cooke <[EMAIL PROTECTED]> wrote: > finding any other way of hiding them is eluding me. NSImageView derives from NSView, which has a "hidden" property. But you might find a tabless NSTabView easier: programmatically switching between two tabs, one for each m

Hiding NSImageView

2008-06-01 Thread Damien Cooke
Hi all, I need to be able to display either one or two images on the screen and the choice is made by the user via a button. So I have built my interface with three ImageWells one large ImageWell and also two 1/2 the size I want to be able to turn them on and off with a button but I can f