Illustrator 10: Uppercase Extension

Is it possible to save the .EPS in uppercase. Everytime this script is run it saves the .eps in lowercase Would like an uppercase file extension of .EPS if possible

tell application “Adobe Illustrator 10”
open file thisPath
tell document 1
save in file (FilePath) as eps �
with options �
{class:EPS save options, compatibility:Illustrator 9, include document thumbnails:true, PostScript:level 3, CMYK PostScript:true} �
end tell
end tell

Icecold,

save in file (FilePath) as eps

You didn’t post how you get the variable FilePath. Usually when you define the path to a file you will be saving it will be the full path - ex: Mac HD:Desktop Folder:My file.eps including the eps extension. So, I would check there to see if you have it defined as lower case “.eps”.

In your Illustrator prefs, you can set whether the extension is appended when saving, and further, if the extension is lowercase or not. See the “Files & Clipboard” pane of the prefs.

Jon