View Single Post
Old 01-01-2010, 05:34 PM   #5
peterloron
Member
peterloron began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Dec 2009
Location: WA
Device: iPhone Stanza
For those like me, stuck in this boat, I have whipped up a little AppleScript applet that lets you drag and drop one or more RTF files (or any text, actually) and it will be saved as HTML in the same directory.

Code:
on open filelist
	repeat with i in filelist
		do shell script "textutil -convert html -extension html '" & POSIX path of i & "'"
	end repeat
end open

Last edited by peterloron; 01-01-2010 at 05:36 PM.
peterloron is offline   Reply With Quote