Set 'transparency flattener presets' to [High Resolution]

http://help.adobe.com/en_US/illustrator/cs/using/WS9327D15E-A9FF-4698-BDA5-8791A891D061.ht ml
I am editing thousands of images that need to be exported as High Res .eps's.
Is there a way to make [High Resolution] the default rather than [Medium Resolution] ?

edit this file
user/(yourname)/library/preferences/adobe Ilustrator 4 settings/en us/Transparency Flattener Presets
Collection 2 is your default so I edited those values to match the screenshot below hope I got them right. Replace the code with below (keep a backup of original just in case)
/collection3 {
/attributes {
/AI9\ Mesh\ Rasterization\ Resolution 144.0
/AI9\ Output\ Rasterization\ Resolution 288.0
/AI10\ flattener\ raster-vector\ balance 75
/AI10\ flattener\ clip\ complex\ regions 0
/AI10\ flattener\ outline\ strokes 1
/AI10\ flattener\ outline\ text 0
/collectionName [ 16
5b4c6f77205265736f6c7574696f6e5d
/canEdit 0
/canDelete 0
/collection2 {
/attributes {
/AI9\ Mesh\ Rasterization\ Resolution 300.0
/AI9\ Output\ Rasterization\ Resolution 1200.0
/AI10\ flattener\ raster-vector\ balance 100
/AI10\ flattener\ clip\ complex\ regions 1
/AI10\ flattener\ outline\ strokes 0
/AI10\ flattener\ outline\ text 0
/collectionName [ 19
5b4d656469756d205265736f6c7574696f6e5d
/canEdit 0
/canDelete 0
/collection1 {
/attributes {
/AI9\ Mesh\ Rasterization\ Resolution 300.0
/AI9\ Output\ Rasterization\ Resolution 1200.0
/AI10\ flattener\ raster-vector\ balance 100
/AI10\ flattener\ clip\ complex\ regions 1
/AI10\ flattener\ outline\ strokes 0
/AI10\ flattener\ outline\ text 0
/collectionName [ 17
5b48696768205265736f6c7574696f6e5d
/canEdit 0
/canDelete 0
/Sketch {
/Version 1
/Description (Flattener catalog for AI11)
/Owner (AI11 Flattener Catalog Manager)
/NumberOfCollections 3
/CatalogName (AI11 Flattener Presets)
A different version I made with the help of Carlso Canto, worked for me to slide the vector balance to bitmapped . So hope the code above works for you.

Similar Messages

  • Automate Loading of Transparency Flattener Preset

    For a project I'm working on we need for our users to have a particular transparency flattener preset loaded. I'm not finding a way to load it ahead of time. I can verify if it's loaded, which is helpful:
    tell application "Adobe Illustrator"
         set flattenerPresets to flattener presets
         if flattenerPresets does not contain "NameOfFlattenerPreset" then
              --do whatever magic is necessary to load the preset
         end if
    end tell
    Because of a bug in Illustrator I can't use UI scripting via AppleScript to automate the import. The issue here is that Illustrator doesn't respond to the "click" command properly when it comes to checkboxes and buttons.
    Another option would be to just place a copy of the preset file into the proper location on the hard drive so that Illustrator sees it. Problem is, I can't seem to determine where that is. Adobe seems to be hiding it somewhere. I manually loaded a preset and then moved it from that location on the hard drive. I re-launched Illustrator and it still had the preset.
    At this point I'm not sure how to automate the loading of this preset. Any and all suggestions would be greatly appreciated.
    Thanks,
    Stephan
    Version Info:
    Illustrator CS4
    Mac OS X 10.5.8

    I don't think its possible to load a preset from AppleScript. Can't your script just supply the flattening options at which ever point they are required?
    tell application "Adobe Illustrator"
    set This_Flatten to {class:flattening options, clip complex regions:true, convert strokes to outlines:true, convert text to outlines:true, flattening balance:100, gradient resolution:600, overprint:preserve, rasterization resolution:300}
    end tell

  • Why can I not select the transparency flattener preset option when exporting to a pdf?

    Hi all,
    I have not had to use this option in quite a while so may have forgotten a few things.
    In InDesign, under Edit>Transparency Flattener Presets, I have created a new preset and included the option of converting all text to outlines.
    However, when I try to export to a PDF, the option to select a transparency flattener preset is greyed out.
    Can you tell me what I may be doing wrong? This is driving me crazy!:(
    (There was originally no transparency in the file, so I created some with a white square set to 0.5% opacity).
    Thanks in advance for your help!
    Best regards,
    Christine

    DesignerDave72,
    Thank you SO MUCH!!
    I have been battling with this for over an hour...and it was frustrating me no end. 1 minute into reading the article you suggested and I was home free!! THANK YOU...!! You're my hero!
    Best regards,
    Christine

  • Strange Transparency flattener preset appearing

    I'm in AI CS3 and when I go to the transparency flattener presets, there's always one in there with japanese characters. I delete it and it comes back next time. What's up with that?
    Randy

    Thanks, to get this working in a server script, I ended up just programmatically creating the flattener preset, rather than worrying about the .flst files.  (Java code below)
      //Setup Transparency Flattener (if not in application)
      FlattenerPreset flattenerPreset = app.getNamedChildFlattenerPreset("Test");
      if (flattenerPreset == null) {
          flattenerPreset = app.addFlattenerPreset();
          flattenerPreset.setName("Test");
          flattenerPreset.setRasterVectorBalance(VariableTypeUtils.createLong(100));
          flattenerPreset.setLineArtAndTextResolution(2400.0);
          flattenerPreset.setGradientAndMeshResolution(400.0);
          flattenerPreset.setConvertAllTextToOutlines(false);
          flattenerPreset.setConvertAllStrokesToOutlines(false);
          flattenerPreset.setClipComplexRegions(false);
      pdfPreset.setAppliedFlattenerPreset(flattenerPreset);

  • Installing Transparency Flattener Preset for Indesign Server CS4

    I'm trying to figure out how to install a transparency flattener preset for InDesign Server CS4.
    I can see how they are installed for the InDesign app.  Edit -> Transparency Flattener Presets...
    But I'm not sure which directory to install these on for the server.
    I've seen a post that mentions:
    C:\Documents and Settings\<UserName>\Application Data\Adobe\InDesign\Version 6.0\en_US\Transparency Flattener Presets
    /Users/<UserName>/Library/Preferences/Adobe InDesign/Version 6.0/en_US/Transparency Flattener Presets
    for the Desktop version.  But when I place files here even for the CS4 Desktop, they don't seem to show up in the UI.
    Any help would be appreciated,
    Thanks,
    Dennis

    Thanks, to get this working in a server script, I ended up just programmatically creating the flattener preset, rather than worrying about the .flst files.  (Java code below)
      //Setup Transparency Flattener (if not in application)
      FlattenerPreset flattenerPreset = app.getNamedChildFlattenerPreset("Test");
      if (flattenerPreset == null) {
          flattenerPreset = app.addFlattenerPreset();
          flattenerPreset.setName("Test");
          flattenerPreset.setRasterVectorBalance(VariableTypeUtils.createLong(100));
          flattenerPreset.setLineArtAndTextResolution(2400.0);
          flattenerPreset.setGradientAndMeshResolution(400.0);
          flattenerPreset.setConvertAllTextToOutlines(false);
          flattenerPreset.setConvertAllStrokesToOutlines(false);
          flattenerPreset.setClipComplexRegions(false);
      pdfPreset.setAppliedFlattenerPreset(flattenerPreset);

  • Transparency Flattener Settings

    I have been getting conflicting information about the settings for the transparency flattener preset options when creating PDFs out of InDesign and I wanted to get things straight. From one side I was told to change the setting to read: Raster/Vector Balance 100, Line Art Text Res 2400 ppi and Gradient Mesh Res 300 ppi. And the other side says that the High Resolution default settings work just fine and that these settings are like the appendix in CS3, totally unnecessary! I am working in CS3 and use the PDF/X-1a:2001 setting to export. Any insight would be great, thanks.

    The only difference between [High res] and the values you quote is "Line Art Text Res 2400 ppi"
    And the only time that is used (as long as "vector-pixel" is set to 100) is when you use an effect (say a drop shadow) with a softness of less than 0.5pt.
    I.e. the quoted values give you a better result for very hard effects at the price of 4 times the data volumen in the PDF.
    You yourself must decide if you need your hard shadows in 2400ppi or 1200ppi.

  • Acrobat 9 Transparency Flattening Colour Shift

    Hi all,
    This is something I found out the hard way, and it seems like a real trap in Acrobat 9.
    I have a document prepared in ID, exported to PDF/X-4 with all profiles included. The document is prepared in RGB model (AdobeRGB), because we're printing in house on Epson 4800 tabloid printer.
    All looks fine onscreen in Acrobat. (Colour managed setup etc).
    But when printing to the Epson, the images have poor shadow detail and are darker than they should be.
    I eventually figured out that it is to do with the colour space used for Transparency Flattening. It took me a while to find it, but by default it is set to "Device RGB" on my system in the Flattener Preview. When I changed it to Adobe RGB, which is the colour working space used in the document, the prints come out correctly.
    Observations:
    1. Changing the colour space for flattening is not persistent as a general setting, but you can save it back to the PDF.
    2. Even though it appears on the same dialog, the colour space is not stored with the transparency flattener presets.
    3. This setting has an ongoing effect on how the document is printed (i.e. after the dialog is closed), even though the dialog leads you to believe it only relates to flattening preview.
    What puzzles me is why this setting can't be put there with the correct value when ID generates the PDF.
    Is there anything else I've overlooked here? This seems like a really nasty little trap for the unwary.
    MT

    Hi all,
    This is something I found out the hard way, and it seems like a real trap in Acrobat 9.
    I have a document prepared in ID, exported to PDF/X-4 with all profiles included. The document is prepared in RGB model (AdobeRGB), because we're printing in house on Epson 4800 tabloid printer.
    All looks fine onscreen in Acrobat. (Colour managed setup etc).
    But when printing to the Epson, the images have poor shadow detail and are darker than they should be.
    I eventually figured out that it is to do with the colour space used for Transparency Flattening. It took me a while to find it, but by default it is set to "Device RGB" on my system in the Flattener Preview. When I changed it to Adobe RGB, which is the colour working space used in the document, the prints come out correctly.
    Observations:
    1. Changing the colour space for flattening is not persistent as a general setting, but you can save it back to the PDF.
    2. Even though it appears on the same dialog, the colour space is not stored with the transparency flattener presets.
    3. This setting has an ongoing effect on how the document is printed (i.e. after the dialog is closed), even though the dialog leads you to believe it only relates to flattening preview.
    What puzzles me is why this setting can't be put there with the correct value when ID generates the PDF.
    Is there anything else I've overlooked here? This seems like a really nasty little trap for the unwary.
    MT

  • How do i set Preset "High Resolution" in save as EPS script

    Hi,
    I am writing my own Illustrator scripts to automate the workflow.
    I haven't been able to fix a Preset "High Resolution" in the transparency section of the EPS-option dialog.
    Is there a way to set that option by script?
    It would be great if anyone help an idea of how to solve it.
    MOhan

    Thanks.
    My issue is as per my workflow need to supply PDF to clients.
    Same is converted from Adobe Illustrator>Concert to EPS>Distill and PDF is ready.
    While converting through Script process some of the text's converting in pixels.
    Same if converted without script it comes in good quality.
    Please advise.

  • Preset "High Resolution"

    Hi,
    I am writing my own Illustrator scripts to automate the workflow.
    I haven't been able to fix a Preset "High Resolution" in the transparency section of the EPS-option dialog.
    Is there a way to set that option by script?
    It would be great if anyone help an idea of how to solve it.
    MOhan

    For Eps using the script as
    save current document in file newFilePath as eps ¬
                with options {class:EPS save options ¬
                , compatibility:Illustrator 14 ¬
                , preview:color Macintosh ¬
                , embed linked files:true ¬
                , include document thumbnails:true ¬
                , embed all fonts:true ¬
                , CMYK PostScript:true ¬
                , PostScript:level 3}
    in this If I add "preset:high resolution" than it show's error.
    It will be great if any one help me how to add this.
    MOhan

  • Security set to allow high resolution printing but pdf won't print

    We create a large number of pdf files to send out to
    clients, etc. We have been using security on all pdf's being sent out, however, some clients are having issues printing these pdf files even though our security settings are set to allow high resolution printing. Any one have any ideas why? I cannot duplicate the issue for whatever reason, the files still print for me.

    I discover I am suddenly having a similar problem as well.
    I have recently migrated to a new Intel iMac/Leopard, I'm on a network and trying to print to a Tektronix/Xerox 7700 laser printer. I can print anything other kind of document on that printer as long as it is not a PDF.
    When I open the printer window it says the job has been stopped. I choose the job and tell it to "resume" at which point the printer pauses itself. Once it flashed a window that said Operation Not Possible - client-error-something-something and then closed before I could see what the last two words were.
    I am currently using Adobe Reader 6.0. I would love to be able to try to print out of 7.0 but there seem to be continual download problems in the form of constant connection failures. I also have Acrobat 6.0 STD - can't print out of either one.

  • How do I set high resolution on my Canon Pixma 600 printer?

    How do I set high resolution on my Canon Pixma 600 printer? Also the copies from my computer look ok, but when I copy them from the printer, I can hardly read the print. Any help out there? Thanks , Martha

    Hello mlshouse1758.
    Additional troubleshooting will have to be done to narrow down the cause of your copy issue.  Please contact our support group using the "Contact Us" link below for additional assistance.
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • T420s - Unable to set high resolution when on external monitor via DP.

    Sorry, let me clarify - 
    Unlike the OP, I do *not* switch back to 50 Hz on battery. However, I am running the NVIDIA beta driver. I installed this because with the Lenovo driver, the machine was not outputiting 2560x1600 over the display port. The highest resolution it would output was 2048 x 1000-something (out of the office now and don't have the exact numbers).
    So yes, with the Lenovo driver the external DP was working, just not outputting the highest resolution. Installing the Nvidia driver fixed that problem. Whether it is related or not, I don't know, but with this driver I do not get 50Hz resolution on the LCD on battery -- everything stays at 60.
    I have not rolled back to the Lenovo driver to test whethe this is reall a driver issue, but suggest that the OP try out the Nvidia driver.
    edit note: Change subject to match description.

    The unable to set high resolution issue on the T420 (not the T420s) was sent to engineering by JameZ just a few days ago. See more here. I suggest you post there or contact JameZ so they know it also occurs on the T420s.
    When asking for help, post your question in the forum. Remember to include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help others with the same question in the future.
    My TPs: Twist 2HU: i5-3317U Win 8 Pro, 4GB RAM 250GB Samsung 840 | T420 4177CTO: i5-2520M, HD+, Win 7 Pro x64, 8GB RAM, Optimus, 160GB Intel 320 SSD, Intel 6300 WiFi, BT 3.0 | T400 2764CTO: P8700, WXGA, Win 7 Ult x64, AMD 3470, 8GB RAM, 64GB Samsung SSD, BT, Intel 5300 WiFi | A20m 14.1" PIII 500 (retired). Monitors: 2x Dell U2211h IPS 100% sRGB calibrated w/ Spyder3.

  • Is there a way to set my camera on my iPhone 5 to take a higher resolution picture

    How can I take a higher resolution pic on my iPhone 5? Please help and it seems like when I upload my pic to the computer or share via email or other media, the resolution is really low. Please help.

    The iPhone always takes photos at its highest resolution. If you share by anything other than copying to your computer via USB or sending via email the resolution will be reduced by the transfer medium. Email gives you a choice of resolutions, however, many email providers will not accept photos at the camera's highest resolution.
    It's also possible that you don't understand how resolution is measured. Image file size has very little to do with image resolution.

  • High resolution PDF still generates low resolution drop shadows?

    I have created a series of print ads in InDesign CS5.5 to be run in magazines, and at the bottom of the page is the company's logo, with a drop shadow applied to it within InDesign. Nothing strange there. Upon exporting the PDF, I use the Press Quality settings which by default are made to create 300 dpi PDFs. The only changes I make in the settings is adding bleed and crop marks, I don't change anything that could affect the resolution or transparency settings. But still, the magazine's print-technician always replies that the shadows in my document have a low resolution.
    Up until now I have told him to not worry and run it anyway, and the results have been fine - I haven't noticed any problems with the quality of the print in the magazine. But it really annoys me that I keep getting these error messages - I want to create perfect PDFs! Why on earth are my shadows ending up as low resolution images?
    The only thing I can imagine might be a sign of an issue is under the Advanced-tab in my Export-settings. The Transparency Flattener section (which I, to be honest, am not quite sure what it is) is set to medium resolution, and is greyed out - meaning I can't change it to high resolution. Could this be what is causing it? And if so, how do I fix it?

    I don't spend a lot of time with Acrobat's preflight, but it looks like it assumes what the flattener preset will be at output even though it could be anything.
    The default Press Quality preset exports live transparency with the flattener grayed out as Medium and it looks like Acrobat preflight considers that even though nothing has been flattened yet. So, here I've made a 3" sqaure box and exported it with Press Quality and prefilght tells me it's roughly 200ppi (which by the way is plenty for a dropshadow):
    If I change the preset to High (set the Compatibility to 1.3, which lets you set the flattener to High, then reset compatibility to 1.4):
    Then Acrobat's preflight tells me the shadow will have more resolution:

  • Different transparency flattening results

    Hi all,
    When I flatten transparency using the [high resolution] flattener presets in Acrobat 10.1 Flattener Preview, I get flattened areas with pretty high resolutions: 1681x1681ppi, 762x762ppi. When I export my original IND-document to PDF using the exactly the same flattener presets, I flattened areas or images with a resolution of 300x300ppi (as I would expect from these presets).
    Anyone who can explain the difference? I always assumed that both techniques are using the same underlying technology / algorithms to flatten a page (therefore giving the same end result).
    BTW: the first situation resulted in the 'thin white lines' (artifacts) to appear on screen and in print (!) , so 'not good'.

    If character "-" is not included in search characters, is that correct that "o-ring" will be treated as a phrase search?
    I found the following in Dev studio help:
    Adding search characters that support automatic phrasing
    Inclusion of original punctuation marks in search query phrases returns more relevant results.
    It says "More" which made me think ... maybe not "phrase". Please explain, thanks.

Maybe you are looking for

  • How to make a clickable list of items : Item.HYPERLINK in MIDP 1.0?

    I used to have Item.HYPERLINK in MIDP 2.0... I used it with list of page names(each with URL)..by clicking on each name you would go to the URL defined with that specific name. How do we do the same thing in MIDP 1.0 ?? Any suggestions? Thanks. M.Mam

  • How to automate replacing smart object from folder?

    Hello! I have a layout in CS6, with an image that is a smart object. I have a folder of jpgs, and need to make comps from each of the JPGs. At the moment I take the master, double click the smart object. Place in the source JPG from the folder I'm wo

  • Ldd output and executables

    I have my executables built on both Forte Developer 7 and Sun Studio 11. When I run "ldd" on my executables on both the systems, I found the following differences : Where as Forte developer 7 lists the following libraries : libCstd.so.1, libCrun.so.1

  • How the availiblity check is carried out during the sales order creation

    Hi All, I have maintained planned delivery time, GRProcesing time and replenishment lead time in days in material master. I am not understand ing how the system is calculating the availability date of the material during sales order creation. Please

  • TempInit error

    I'm importing vector images from illustrator into flash to make new movie clips. I took care to name my mc´s correctly, but made the mistake to have naming errors in the symbols that I have created in illustrator. When I test is swf I get tempInit sy