RailsMailPreview updated for 10.8 • 12.10.12
RailsMailPreview has been updated to work on Mac OSX 10.8.
To download visit: http://nufex.com/
RailsMailPreview has been updated to work on Mac OSX 10.8.
To download visit: http://nufex.com/
I recently wrote an app called RailsMailPreview which will capture any emails being sent from your Rails app.
Once they are captured you can preview what they will look like to the end user.
It is available for purchase from the Mac App Store:
http://nufex.com/link/rails-mail-preview
In the current project that I’m working on I wanted to give the user the ability to add an email to their address book.
The thing I wanted the user to see was AddressBook.app open and show the current person’s email in edit mode.
The way I did that was like so:
I’m going to start posting more code snippets on my blog and each of those posts will be called Cocoa for today and of course the title changes for the specific code I’m writing.
If your working with NSOutlineView and need to deselect all items you can use
the deselect all method from NSOutlineView
[myOutlineView deselectAll:nil];
|