Tag Archive: “marsedit”

Note Poster

Here’s a script to create a new post in MarsEdit from a note selected in Yojimbo. Why use a script when it’s already as easy as copy and paste? Well, maybe your computer is running out of paste.

tell application "Yojimbo"
	set _items to selected items of browser window 1
	if (_items is {}) or (_items is missing value) then return
	set _note to item 1 of _items
	if class of _note is not note item then return
end tell

tell application "MarsEdit"
	set _post to make new document
	set body of _post to contents of contents of _note
	set title of _post to name of _note
	activate
end tell

Click here to open the script directly in Script Editor. Save it in ~/Library/Scripts/Applications/Yojimbo and you’re ready to run.

Posted on Sunday, May 11th, 2008 in Macintosh. Tags: , , . No Comments

MarsEdit Preview

If you arrange MarsEdit’s post and preview windows to your liking, don’t forget that you can choose Save Default Window Size from the Window menu to use the same window layout for every session. Together with the automatic Open the Preview window preference, this provides a nice side-by-side preview interface for each post you edit.

example screenshot of tiled MarsEdit post and preview windows

Posted on Thursday, January 31st, 2008 in Macintosh. Tags: . No Comments