All PDF Presets Not Showing Up in Menu

There are 14 total PDF presets between both Settings folders on my computer (Mac 10.8.5). Only 10 of them are showing in the Adobe PDF Presets menu item. Does anyone know why all of them wouldn't be showing up?
Thanks,
Lloyd

I'm in InDesign CC 2014. All of the missing ones came with InDesign, as far as I know…they all have the same creation dates. I created two and they ARE showing up. And it's not consistent; some from each folder are showing up, and some from each folder are not showing up. A couple of them are named PDFA1b as opposed to PDFX1a (etc.). Also, two that aren't showing up have JPN in the file name (right before the period) but one that has JPN in the file name IS showing up. It's not a huge deal, I was just curious why some would and some wouldn't.Thanks!

Similar Messages

  • PDF presets not showing up in indesign CC

    Hi,
    We have about 28 CC users on mac (mavericks), and we've just started using Indesign CC within the last month or so.
    My problem is that we are 'deploying' via remote desktop, a standard set of PDF presets so everyone have the same settings. This works fine on cs3-cs6. But for some reason it does not work with indesign CC. CC wil only show the presets that are in the users/xxx/Application support/Adobe PDF/Settings folder and not the ones from the default folder /Library/Application support/adobe/adobe PDF/settings .
    I can add them by either loading the presets in indesign one by one, on every single mac, or manually  also on every single mac, put the presets in the users folder, but both options really suck. Mind you we change presets very often, so this is really not ideal for me.
    Hope someone can help direct me to the master PDF preset folder for CC - The one folder who rules them all !!!

    http://forums.adobe.com/community/indesign may be a better place to ask
    This forum is actually about the Cloud as delivery, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • TS3798 My Apple TV Does NOT show the Internet menu option. Has all the other options but the Internet. I am connected to the Internet as I can  Rent, Buy ,etc..movies from the Apple Store...

    I have a first Genreation iPAD and just a new Apple TV, 3rd Generation. The Apple TV does not show the Internet menu option after booting up.

    There isn't one.
    AppleTV3 has icons for all the internet features.

  • PDF does not show up

    Hi all,
    The following is my code snippet in JSP for a project which i used to generate a PDF file. But the PDF does not show up . The Adobe loads and i get a pop-up saying
    'Acrobat could not open 'Example[1].pdf' because it is either not a supported file type or because the file has been corrupted.'
    This is the code snippet i used:
    <%@ page import="java.io.*" %>
    <%
    String s = new String("Hai this is PDF Sample");
    byte file[] = s.getBytes();
    try
    BufferedInputStream inputStream = new BufferedInputStream(new ByteArrayInputStream(file));
    BufferedOutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
    response.setHeader ("Content-Disposition", "attachment; filename=Example.pdf");
    response.setContentType("application/pdf ; charset=iso-8859-1");
    int bytes = 0;
    byte buffer[] = new byte[1024];
    while((bytes = inputStream.read(buffer)) != -1)
    outputStream.write(buffer,0,bytes);
    inputStream.close();
    outputStream.flush();
    outputStream.close();
    }catch
    (Exception e){}
    %>
    Can anyone please help me out.
    Thanks in Advance.
    RDP.

    FOP is an Apache project that lets you generate PDFs using XML and XSL.
    Here's the servlet:
    package common.servlets;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringReader;
    import java.net.URLDecoder;
    import java.util.Map;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.sax.SAXResult;
    import javax.xml.transform.stream.StreamSource;
    import org.apache.fop.apps.Driver;
    * A servlet that takes XML and XSL streams and sends back a PDF file,
    * using Xalan and FOP.
    public class PDFServlet extends HttpServlet
        /** Response content type */
        public static final String DEFAULT_RESPONSE_CONTENT = "application/pdf";
        /** Parameter/attribute name for XML input */
        public static final String DEFAULT_XML_NAME = "print.xml";
        /** Parameter/attribute name for XSL input */
        public static final String DEFAULT_XSL_NAME = "print.xsl";
        /** Default character encoding */
        public static final String DEFAULT_CHAR_ENCODING = "UTF-8";
        /** Transformation factory */
        private TransformerFactory transformerFactory;
         * Initialize the servlet
         * @throws ServletException if the initialization fails
        public void init() throws ServletException
            try
                this.transformerFactory = TransformerFactory.newInstance();
            catch (Exception e)
                throw new ServletException(e);
         *  Process a GET request
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doGet(HttpServletRequest request,
                                     HttpServletResponse response)
            throws ServletException, IOException
            this.doPost(request, response);
         * Process a POST request by looking up the JSP using the source + action
         * parameters
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response)
            throws ServletException, IOException
            try
                Driver driver = new Driver();
                driver.setRenderer(Driver.RENDER_PDF);
                ByteArrayOutputStream baos  = new ByteArrayOutputStream();
                driver.setOutputStream(baos);
                Map parameters   = request.getParameterMap();
                String xmlString = null;
                if (parameters.containsKey(DEFAULT_XML_NAME))
                    xmlString = request.getParameter(DEFAULT_XML_NAME);
                else
                    xmlString = (String)request.getAttribute(DEFAULT_XML_NAME);
                String xslString = null;
                if (parameters.containsKey(DEFAULT_XSL_NAME))
                    xslString = request.getParameter(DEFAULT_XSL_NAME);
                else
                    xslString = (String)request.getAttribute(DEFAULT_XSL_NAME);
                if ((xmlString != null) && (xslString != null))
                    xmlString = URLDecoder.decode(xmlString, DEFAULT_CHAR_ENCODING);
                    xslString = URLDecoder.decode(xslString, DEFAULT_CHAR_ENCODING);
                    Source xml = new StreamSource(new StringReader(xmlString));
                    Source xsl = new StreamSource(new StringReader(xslString));
                    Result fop = new SAXResult(driver.getContentHandler()); // Intermediate result
                    Transformer transformer = this.transformerFactory.newTransformer(xsl);
                    transformer.transform(xml, fop);
                    response.setContentType(DEFAULT_RESPONSE_CONTENT);
                    response.setContentLength(baos.size());
                    response.getOutputStream().write(baos.toByteArray());
                    response.getOutputStream().flush();
                else
                    PrintWriter out = response.getWriter();
                    if (xmlString == null)
                        out.println("Missing XML");
                    if (xslString == null)
                        out.println("Missing XSL");
            catch (TransformerException e)
                e.printStackTrace(System.err);
                throw new ServletException(e);

  • Adobe PDF Toolbar Not Showing In Firefox

    I installed CS5 Master Collection in Windows 7 64 and Adobe PDF toolbar installed automatically in IE8 but not in Firefox latest version. Would somebody please tell me what to do to install in Firefox?
    Thanks a lot!

    Thank you for all the information. I'll upgrade to Acrobat X.
    Date: Sun, 6 Feb 2011 11:45:21 -0700
    From: [email protected]
    To: [email protected]
    Subject: Adobe PDF Toolbar Not Showing In Firefox
    Adobe Reader if always free. Acrobat requires a purchase.
    Also Acrobat X has different UI, there is usually a floating toolbar that can be used to open the full toolbar.
    >

  • Hard disk not detected during booting or also it does not show in boot menu.

    hard disk not detected during booting or also it does not show in boot menu please tell

    you may have a failed hard drive or bad cables, i would check first to see if the hard drive is powering on. if it doesn't try a different power connection, and if it still doesn't start spinning i would say that it is bad and get a new hard drive. If
    it does start spinning and just isn't being recognized, try a different sata port if you have the option or a different sata cable all together.

  • Every time I try to save my Indesign document as an Interactive PDF, the option of either saving it as Interactive PDF or PDF is not showing.

    Every time I try to save my Indesign document as an Interactive PDF, the option of either saving it as Interactive PDF or PDF is not showing.

    You export to PDF, not save.

  • Air Play icon not showing up in menu bar. How do I fix this?

    Air Play icon not showing up in menu bar. How do I fix this?

    What year is the MacBook Pro from?
    AirPlay: iOS and Mac

  • Netflix is not showing up in menu

    Netflix is not showing up in menu, any suggestions?

    I am having the same problem!  Where are you located?  I live in Japan but stream Netflix using an US IP address.  I bought a tv and apple tv just to stream Netflix.  It's so frustrating!

  • My Library (History/Show All History) does not show ANY History - only Tags & "All Bookmarks". What settings do I need to adjust to have this show. Nothing in the Options/Privacy seems to be relevant

    My Library (History/Show All History) does not show ANY History - only Tags & "All Bookmarks". What settings do I need to adjust to have this show. Nothing in the Options/Privacy seems to be relevant in English

    Lightning is a problem for you because it hooks into Thunderbird at a low level and you need a version compiled for the platform Thunderbird is running on. So you can't do the preferred solution, which is to put your whole profile in a shared folder and have both instances of Thunderbird reference the same profile. (Ditto for Enigmail). Lightning may become an integral part of Thunderbird in an upcoming release, at which point this limitation due to Lightning should disappear.
    And if you can't use a shared profile, you can't set your Lightning, or your Address Book, to share a common set of files. Put another way, the linkage from Thunderbird to its address book files and calendar data is hard-coded, and not exposed where we can adjust it. :-(
    The halfway house is to place your mail stores in a shared place, and use the Local Directory setting in each account's settings to connect to it. They don't need to be in the profile; what's more important in your case is that they are in a folder accessible to both operating systems.
    Look in your profile; everything under Mail and ImapMail needs to be moved out to a shared folder. Note the entries in Thunderbird under Local Directory before you do this, and reconstruct those pathnames in Thunderbird, but adjusted to suit their new locations.
    (You can see here that you need to make many adjustments, one per account, in each instance of Thunderbird, so it's a high-maintenance solution and this is why we don't recommend it when the alternative, moving the whole profile, is possible.)
    I share address books and calendars between Thunderbirds on various computers (and my phone and tablet) by syncing to something in the cloud; Google Contacts and Google Calendar are my choices, using gContactSync and CalDav.
    Having made the break myself some years ago, I'd recommend you break away from Windows. ;-)

  • I have a imac mid 2011 model, why can't i connect to airplay?  And the airplay icon does not show in the menu.

    I have a imac mid 2011 model, why can't i connect to airplay?  And the airplay icon does not show in the menu.

    Hi there cjperido,
    You may find the troubleshooting steps in the article below helpful.
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/ts5209
    -Griff W. 

  • PDF output not showing all 4000 characters

    Hi,
    I have a placeholder column of character data type and its width is 4000. When I execute the report and see it pdf output it shows only 1980 characters with last line characters going beyond the report margins.
    Is there a way to display all 4000 characters?
    Thanks,
    Mitiksha

    Hi Ade,
    I tried all possible combinations of fetching the data. Writing a PL/SQL function and assigning the data to placeholder in before report trigger. Also, tried to use a query and then assign the data to placeholder through formula column. Directly assigining the database column on field without using placeholder.
    While trying all the above options, I ensured that width is set to 4000 characters.
    But all in vain. It works fine for 2000 characters but not able to print 4000 characters.
    Regards,
    Mitiksha

  • PDF pictures not showing

    I've exported a keynote to pdf in order to share with people and so far have feedback from one windows user that some photo's are not showing for them whereas all is fine on my imac.
    It turns out that keynote pic's that are masked are selectively not showing for this person- again, the exact same pdf file is fine for me. I went into the adobe reader settings for this person and the settings (default) are just like my adobe settings... no settings need changing that I can see (i.e. pictures turned off or such...
    One other bit of info... the person sees a shadow or outline of where the masked photo would be... but the slide background is showing. And again the pdf looks just fine on my computer???
    Any suggestions other than having to go thru my presentation and redoing photo's so no masking...
    thanks
    actually I'm doing a demo of keynote 09 maybe I'll try pdf for that to see if any different...

    Hi Robert,
    It is true Acrobat Pro can flatten layers. I just exported a Keynote file to PDF containing masked images and there was only one layer generated. Can you confirm you file has more than one layer? You can do this in Adobe reader with the View> Navigation Panels> Layers Menu item. Transparency is a separate issue.
    Flattening layers and flattening transparency are two different things.
    Flattening Layers makes 1 layer. Flattening transparency removes the alpha or transparency value assigned to objects by rendering the overall effect of multiple overlapping objects and blending modes into a single pixel-image like a tiff and replacing the objects (largely – sometimes line-work gets left) in the file. This is used in print world because high-end image image setters have no way to interpret transperency that illustration programs (and Keynote) can generate in there PDF files.
    Which is a long way to saying if you save in a PDF format prior to transparency PDF 1.5 and below I think?? you'll get rid of transperency from your file. Thhere are also newer PDF/X standards used in print industry but I have no experience of them.
    Print from Preview application to a PDF would probably flatten a file. I get options for various PDF formats in my print dialogues but you may not because I have additional software installed that may be generating them. Sounds like the update did the trick anywho.

  • Camera Raw Defaults & Presets not showing menus (BRIDGE)

    Hi There
    I just upgraded to a new version of PS CS3 & Bridge and the option to apply Presets, or to Apply Camera Raw Defaults is not showing when I right click a file in Bridge. It also doesnt show up in the menu. I need to be able to Batch process hundreds of photos at a time and then convert them to Tif formats. I used to be able to do this by applying my Adobe Camera Defaults to many images at once. How do I do this now????
    I am running Bridge 2.0.0975 and PS 10. Help!! This is critical for me!!!
    thanks so much!

    > Even if old versions are available for download, having older versions available on disk in case of malfunction is a perfectly acceptable practice.
    > This applies to any update of any software.
    Agreed. I have gigabytes of disk space packed full of iso's, dmgs, and zips for
    (almost) all of the software I've installed on my computers. It's a pain to
    manage sometimes, but I know I can go back and reinstall PS7 (for instance) if I
    need to even though I have no clue where the CD is at. It's just one part of my
    configuration management and backup strategy. I don't have a sysadmin to take
    care of this kind of thing for me any more, unfortunately, so I have to do it
    myself.
    This plan also has the advantage that I don't have to be online to download
    older versions from a vendors site (if it's even available) or go searching for
    a seeded torrent (if it's not).
    I'm not saying this approach is good for every one or even good for anyone but
    me, but it is a perfectly valid way of doing things.
    -X

  • All day events not showing up in iCal

    On my iMac I cannot enter an all day event in iCal.  All day events entered via my iPhone or Mobile Me also do not show up on the iMac.  Just upgraded to Lion, no problem before this!

    Hi Linda,
    Open iCal and from the View menu check that Show All-Day Events is checked.
    Best wishes
    John M

Maybe you are looking for

  • Dynamic filename configuration via custom EJB

    Hi Experts,                     We are doing a poc on whether we can do the dynamic filename configuration,i.e. set the file name dynamically in a custom EJB deployed on the server and called in the sender comm. channel of any J2EE based adapter. The

  • Tree component bug (?) and some questions

    Hi! I have some problems and questions about tree component. Problems: 1. I have an expanded tree with ~300 items. Each item label displayed in 2-3 strings. After QUICK tree scrolling using mouse wheel (I make 3-5 scrolls) for most of items displayed

  • Envelop header for HTTP receiver adapter

    Hi, In one of the business scenario's XI has to send data to an external party using an envelope header(Sample document to be sent is given below.) <b>Message-ID:ABC.JavaMail.SYSTEM@ztxwmwspro02 Date: Thu, 16 Oct 2003 17:02:04 -0400 (EDT) Mime-Versio

  • ORA-01436 CONNECT by loop in user data Oracle HRMS - How do I prevent this?

    I am getting from time to time an error when users are performing tasks in Oracle HRMS that comes back as ORA-01436 CONNECT by loop in user data. This issue is caused when there exists a loop in the Supervisor hierarchy. For ex: Emp A reports to Emp

  • Myth TV - help is needed???

    HI AF. I would like to know if somebody have been able to get MythTV to work??? Most of  MythTV is working. The only thing missing is the Live TV. And recording?? After trying for several days - I'm at a point where i don't know what to do??? My Hard