Results 1 to 7 of 7

Thread: Workflow...

  1. #1

    Default Workflow...

    I'm interested in using Smart Folders to auto assign tag-sets. At this time, I'm required to add the file to Records and then drag the file to the appropriate Smart Folder, i.e., Add the file, find the file, drag the file. This can get a bit tedious.

    Are there any planned work flow enhancements regarding the following:

    A pop-out Drop Dock as an alternative to the Drop Pad?
    Initial and direct Smart Folder file dropping both within EF and via a pop-out Drop Dock?

    Thanks.

  2. #2

    Default

    Quote Originally Posted by kangaroo View Post
    I'm interested in using Smart Folders to auto assign tag-sets. At this time, I'm required to add the file to Records and then drag the file to the appropriate Smart Folder, i.e., Add the file, find the file, drag the file. This can get a bit tedious.
    It’s planned to allow direct importing into smart folders, so that you could just do one drag and drop to import and apply the actions. You can achieve much the same thing today by creating an AppleScript droplet that imports the files, sets the tags, etc. There are various convenient ways of using droplets: the Finder toolbar, Dock, LaunchBar, etc.

    Improvements to the Drop Pad are planned, although I don’t want to say at this point exactly what form they will take.

  3. #3

    Default

    Is there an existing AppleScript you can point me to that would require only a modification for my purposes? Also, I use LaunchBar. Thanks.

  4. #4

    Default

    Quote Originally Posted by kangaroo View Post
    Is there an existing AppleScript you can point me to that would require only a modification for my purposes? Also, I use LaunchBar.
    There’s the LaunchBar import script. For your purposes, you would probably want something like this:

    Code:
    on open _files
        tell application "EagleFiler"
            tell library document 1
                import files _files tag names {"foo", "bar"}
            end tell
        end tell
    end open

  5. #5

    Default

    Getting closer...

    As indicated, the script you provided worked properly in LaunchBar but, unfortunately, it didn't seem to work as a Folder Action script. Any ideas?

    Thanks.

  6. #6

    Default

    Quote Originally Posted by kangaroo View Post
    As indicated, the script you provided worked properly in LaunchBar but, unfortunately, it didn't seem to work as a Folder Action script. Any ideas?
    To use it as a folder action in the Finder you would need something like:

    Code:
    on open _files
        my importFiles(_files)
    end open
    
    on adding folder items to _folder after receiving _files
        my importFiles(_files)
    end adding folder items to
    
    on importFiles(_files)
        tell application "EagleFiler"
            tell library document 1
                import files _files tag names {"foo", "bar"}
            end tell
        end tell
    end importFiles

  7. #7

    Default

    Worked like a charm!

    Thanks,
    John

Similar Threads

  1. Replies: 7
    Last Post: 11-23-2010, 05:48 PM
  2. workflow with gmail
    By thoresson in forum EagleFiler
    Replies: 5
    Last Post: 08-21-2009, 11:36 AM
  3. Best Workflow: Folders vs Libraries?
    By JohnGraham in forum EagleFiler
    Replies: 2
    Last Post: 04-02-2009, 10:27 AM
  4. ScanSnap Setup/Workflow
    By espinner in forum EagleFiler
    Replies: 3
    Last Post: 11-30-2008, 10:21 AM
  5. Suggested Bibdesk workflow?
    By matt1619 in forum EagleFiler
    Replies: 1
    Last Post: 11-20-2008, 12:11 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •