Could someone help me out since I'm pretty new to Applescript. I'm trying to create a script that will embed the linked files, and save as an Illustrator 10 file. I'm using Illustrator 10. I noticed that Save As EPS has this option but isn't it possible also in saving into .ai?
This is what the Illustrator dictionary lists:
Class EPS save options: Options which may be supplied when saving a document as an Illustrator EPS file
Properties:
embed linked files boolean -- are linked image files to be included in the saved document
This is my applescript for saving as EPS ... it doesn't embed linked files ... I tried using {properties:embed linked files} or {embed linked files:true} which gives me an error.
tell application "Adobe Illustrator 10"
activate
tell document 1 to convert to paths (every text art item)
save document 1 as eps with embed linked files
end tell
This is what the Illustrator dictionary lists:
Class EPS save options: Options which may be supplied when saving a document as an Illustrator EPS file
Properties:
embed linked files boolean -- are linked image files to be included in the saved document
This is my applescript for saving as EPS ... it doesn't embed linked files ... I tried using {properties:embed linked files} or {embed linked files:true} which gives me an error.
tell application "Adobe Illustrator 10"
activate
tell document 1 to convert to paths (every text art item)
save document 1 as eps with embed linked files
end tell