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.
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.
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.
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