How to create 1 RTF file per hyperlink.

How do you make a script to import all your FireFox hyperlinks as a RTF file, 1 file per link.

Inside the RTF file, there is the link inside it.
(so you can write comments, annotations, etc.)

The easiest solution is to import your Firefox bookmarks (see File > Import) and to use this script afterwards:


tell application "DEVONthink Pro"
	set theSelection to the selection
	repeat with theRecord in theSelection
		set theURL to URL of theRecord
		if theURL is not "" then
			create record with {name:(name of theRecord) as string, type:rtf, content:theURL} in (parent 1 of theRecord)
		end if
	end repeat
end tell

hey this is really interesting and potentially useful!

so maybe you would use this to make a list of links and then post the list on your website?

sincere thanks!