Skip to main content
Known Participant
March 14, 2009
Question

Is it possible to create droplet?

  • March 14, 2009
  • 6 replies
  • 14536 views
Is it possible to create a droplet in "illustrator cs"?
This topic has been closed for replies.

6 replies

Known Participant
March 26, 2009
Thanks for your response.
Participant
March 26, 2009
You could try doing a batch conversion.
Start by creating an action (actions are listed under the the window menu).
Once you've created an action you can then run it as a batch.
Select the action you have created.
Next click the upper right corner of the actions panel and select batch from the drop down menu.
Locate your source folder and select a destination, then hit okay.
claidheamdanns
Participating Frequently
July 24, 2009

Okay, but that is not really a droplet. In Photoshop you can create droplets out of your actions and it generates an miniature program that you save to your hard drive. From then on, all files dropped on that mini-program are submitted to the step outlined in the action (hence the name droplet). I've also looked for a way to do this in Illustrator CS4 and have not found a way.

Larry G. Schneider
Community Expert
Community Expert
July 24, 2009

The Batch menu item is available in AICS4 as well as CS3. You can't save it as a droplet but it can perform the action on a whole folder of files.

Known Participant
March 16, 2009
Yes, i need for windows.
Participating Frequently
March 16, 2009
I only know how to achieve this on a Mac using AppleScript. I believe you're on Windows?
Participant
December 9, 2009

hello, i want to create an "action droplet" in illustrator (mac os). the results i want to get as output is a vectorised ai file (outlined) and a pdf from my ai file as input.  would really appreciate if you can help me out.

thx

regards,

Tesh

Participating Frequently
December 10, 2009

not sure what you mean with "action droplet" ... an applescript droplet doing that should be something like this:

on open fLs
    repeat with file_ in fLs
        tell application "Adobe Illustrator"
            set file_ to POSIX path of file_
            open file_
            convert to paths (every text frame of document 1)
            embed (every placed item of document 1)
            save current document in file newFilePath as pdf with options {class:PDF save options, compatibility:Acrobat 5, preserve editability:true}
            close document 1 saving no
        end tell
    end repeat
end open

hope it helps;

cheers;

Known Participant
March 16, 2009
Could you please provide me the steps how to create the droplet in "illustrator cs".
Participating Frequently
March 14, 2009
Yes.