Hi,
could you simply add the default flag in IB?

1. select the button
2. Hit -1 to bring up Inspector pane
3. Click the dark grey rectangle next to "Key Equiv."
4. Hit Enter

HTH
Robert

On 22.5.2008, at 16:51, Michael McLaughlin wrote:

As a Cocoa newbie (after years of Carbon), I am working my way through the
3rd edition of Hillegass' book.  I finished his SpeakLine example then
thought I'd challenge myself by making the Speak button the default button
-- but failed.

I coded the following

*** AppController.h

@interface AppController : NSObject {
   IBOutlet NSTextField *textField;
   NSSpeechSynthesizer *speechSynth;

   IBOutlet NSView *windView;          <-- content view, added
   IBOutlet NSButton *speakButton;     <-- added
}

- (IBAction)sayIt:(id)sender;
- (IBAction)stopIt:(id)sender;
@end

*** added to AppController.m

- (void)awakeFromNib {
   [[speakButton window] setDefaultButtonCell:[speakButton cell]];

   // debugging
   NSButtonCell *def = nil;
   def = [[speakButton window] defaultButtonCell];
}

I made the connections in IB to both windView and speakButton and they look OK (compared to those in Apple's BackgroundExporter sample code. I tried
using the content view as well as the button itself to get the window.
Neither works. My button is not blue or pulsing and the Return key does nothing. The def variable *does* get the correct result (judging by self
variables).  Using windView to get the window does not help.

Calling
[speakButton setKeyEquivalent:@"\r"];
did not work either.

Even though my code and the BackgroundExporter seem the same to me, I am
obviously missing something.

Any tips, from anyone?

TIA.

--
Mike McLaughlin

_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/robertcerny%40mac.com

This email sent to [EMAIL PROTECTED]

_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to