So is it possible for an AppleScript to allow the user to selected the variables (days, category, from folder, to folder) when it runs the first time and then save the results as a new executable script?
on 2/23/04 4:52 PM, Paul Berkowitz <[EMAIL PROTECTED]> wrote:
That can be done almost literally in AppleScript:
set thirtyDaysAgo to (current date) - (30 * days)
tell application "Microsoft Entourage"
move (every message in folder "Inbox" whose time received is less than thirtyDaysAgo and its category contains {category "Web Order"}) to folder "Orders"
end tell
