Search Results

2
votes

In Applescript, how can I get to the Help menu Search field, like Spotlight?

Alternatively, hit cmd-? and don't mess with the script. :-) That puts key focus in the help menu's search field. …
1
vote

In Applescript, how can I find out if a menu item is selected/focused?

The built in key shortcut cmd-? already behaves like this. It moves key focus to the help menu's search field if it is not already focused, and otherwise dismisses the menu. …
0
votes

Sample code for using mac camera in a program?

Quartz Composer is also a pleasant way to capture and work with video, when it's applicable. There's a video input patch. Quartz Composer is a visual programming environment that integrate …
2
votes

Height of NSTextView with one line?

It would be more normal to be using an NSTextField than an NSTextView for a single line of text. With NSTextField, just do the following: [textField setFont:myFont]; [textFi …
5
votes

Is it possible to design NSCell subclasses in Interface Builder?

The question was about a subclass of NSCell; the other answers seem to be doing something else, likely taking advantage of UITableViewCell being a view. NSCell is not a view. While laying …
2
votes

How do you start debugging a Cocoa app with a URL?

You can do gdb --wait myAppName and then click on the link to launch your app. This will cause your app to break into the debugger very, very early, before main …
1
vote

Why are there more files/hardlinks with the same iNode than the reference count shows?

Are you looking at Time Machine backups? Are there directory hardlinks involved? If directory A contains directories B1 and B2 which are hardlinked, a file with the same inode would be ins …
1
vote

Determine a process’s architecture

Can you use NSRunningApplication on OSes where it is available, and fall back to sysctl stuff when it isn't? I don't think sysctl stuff is supportable API the way most stuff is, but if you're only …
1
vote

Objective C error messages

Is this relevant? From the Xcode release notes: Note: GCC 4.2 canno …
2
votes

How does one automatically attach a debugger to a process at process start on OS X?

Use gdb --wait. For example, try gdb --wait TextEdit from the command line, then launch TextEdit. …
0
votes

Getting involved with the Mac developer community

My favorite source besides the docs are the Cocoa weblogs. Planet Cocoa aggregates some of them. Apple's …
0
votes

setLeftCapWidth on the mac?

Assuming that what you want to do is draw button-like artwork that consists of a left image, a right image, and a tiled center image, then see …