-- Downloaded From: http://c-command.com/scripts/eaglefiler/import -- Last Modified: 2010-11-27 tell application "EagleFiler" tell library document 1 -- import a file into a particular folder, and add a note set theFolder to library record "MyFolder" of root folder set thePath to "/Users/mjt/Desktop/MyFile" set theNote to "This file was on the desktop." import files {POSIX file thePath} container theFolder note theNote -- import URLs, creating Web archives and adding tags import URLs {"http://www.apple.com", "http://c-command.com"} tag names {"mac", "software"} -- import text, creating a new RTFD file import text "This is a test." end tell end tell