Indesign CS5 EPS export preferences

it seem like when i’m exporting pages as EPS, it doesn’t use the EPS export preferences i set.

Here is what i have:

tell print preferences of MyDocument
			set use document bleed to print to true
		end tell
		
		tell EPS export preferences
			set page range to my_page_range
			set applied flattener preset to high resolution
			set bleed bottom to "0.25"
			set bleed outside to "0.25"
			set bleed inside to "0.25"
			set bleed top to "0.25"
			set data format to binary
			set EPS color to unchanged color space
			set EPS spreads to false
			set font embedding to complete
			set ignore spread overrides to false
			set image data to all image data
			set omit bitmaps to false
			set omit EPS to false
			set omit PDF to false
			set OPI image replacement to false
			set PostScript level to level 3
			set preview to TIFF preview
end tell

I also tried like that:

tell print preferences of MyDocument
			set use document bleed to print to true
		end tell
		
		tell EPS export preferences
			
			set properties to {page range:my_page_range, applied flattener preset:high resolution, bleed bottom:"0.25", bleed outside:"0.25", bleed inside:"0.25", bleed top:"0.25", data format:binary, EPS color:unchanged color space, EPS spreads:false, font embedding:complete, ignore spread overrides:false, image data:all image data, omit bitmaps:false, omit EPS:false, omit PDF:false, OPI image replacement:false, PostScript level:level 3, preview:TIFF preview}
		end tell

Can somebody help me please.
Thanks

I have to say that the property for the page range works fine, but all the other properties?

Hi. The flattener preset property needs to be enclosed in braces, e.g., [High Resolution].

… and double quotes.

Thank you :slight_smile: