Words in PDF's not showing up after being saved

When I try to save some documents off of a website, the PDF comes up but the words and numbers are missing.
Example: When I go to Comcast and I try to save the bill from the website to my computer, then try to open it, the PDF opens and there's no error box but the words and numbers don't show up.
However, if I go to a State website and save a document, the document opens with no problem and the words and numbers DO show up in the PDF.
I double checked and everything is update. I am using Firefox 22.0 and my Adobe is up to date as well.
PLEASE HELP!!!!

I clicked on the link but it said I had 354 fonts installed.
If I had corrupted fonts, wouldn't Adobe or Firefox give me an error? Because I never get an error code or anything. The font and numbers just don't show up.

Similar Messages

  • When I insert a screen shot or image into the body of an email (not an attachment), why does it not show up after being sent? It works fine in other browsers.

    The image will show up in the message when I am preparing it to send, but after being sent either it doesn't show at all or it comes through as a mess of characters.

    try reinstalling iTunes.

  • Pictures in iPhoto do not show up after being moved to external hard drive.

    I moved an iPhoto library to an external hard drive.  When I created this library I did not tick on "Copy items to the iPhoto library" when importing.  I wanted to keep the pictures in the folders neatly.  These folders were moved to the external hard drive along with the iPhoto library.  However, when I tried to go to Find -> Original File/Modified File it said that the picture was not found.  When in actuality, the folders of the original files had been moved to the external drive.
    I understand one solution is to create a brand new iPhoto library with these pictures in my external hard drive.  However, when I do that I loose all the photo albums which were created in the internal hard drive.  Is there a way to move the iPhoto to external hard drive and still have the links work, and not lose my albums?

    This is the primary reason why experienced users recommend not using a referenced library. Simply, there is no way to move it without braking the path to the photos, and short of hacking the SQL database, there is no way to update the paths except for each photo, one by one.
    I wanted to keep the pictures in the folders neatly.
    Doing what you have done means more work, moe complexity and no extra power at all. It's uttterly unnecessary. iPhoto keeps the files quite neatly itself. But that simply doesn't matter as you never access the files via the FInder anyway.
    Now you need to decide what you want to do.
    If you return the Library and the Files to exactly where they were on your internal you can the  recreate the Library - but only as a managed library - with iPhoto Library Manager
    If that worries you from the point of view of accessing the files then have a read of this:
    https://discussions.apple.com/docs/DOC-4491
    If you purchase Aperture ($70 on the App Store) then you can use it's Relocate Masters command to move the originals and the Library to the external.
    Or, if you feel like hacking an SQL database you can read how to do that here
    https://discussions.apple.com/thread/3216539?tstart=30
    Not for the faint hearted, and be sure to back up first.
    For my money: rebuild as a Managed Library. It's easier going forward, saves work, and means you never have to face this issue again.
    Regards
    TD

  • 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.

  • OHS 11gR1 web-page not showing up after creation, registration of webgate

    Hello there,
    The OHS webpage on host:7777 is not showing up after I created, registered the webgate on oam 11g console. I copied the 2 artifacts into the ohs proxy server box in the webgate/config folder and restarted OHS instance but now, the ohs page won't show up. The opmn status says its alive but it doesnt show up in the browser.
    I have oam 11.1.2 installed with webgate 11.1.2 and ohs webtier 11.1.1.6.0. Am I missing any step? Do I need to create a authentication scheme before I check it? Please advise to the earliest convenience.
    Thanks!!

    Hi,
    You need to create authentication scheme. also create resourse for index.html page in OAM console and add it to protected resourse list. So when you will access OHS with 7777 port it will redirect to OAM SSO page, after successful login it will take you to the home page of OHS.
    mark, if this helps.
    Regards,
    Kishore

  • 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);

  • The templates are not showing up after I select them???

    the templates on pages are not showing up after I select them....unless I highlight the entire page and select a particular colour.  That leaves all the colours in the photo off.  Any help would be so very helpful.   

    CeraG - It will help to answer if you supply your system version, pages version and if you lately have done anything to the computer (installing, uninstalling etc)
    I think you have forgotten to do a Software update or it could also be a font problem but more info from you is needed!

  • Why are contacts not showing up after added

    why are contacts not showing up after added. Don't show up after they added when I want to select then for a new email

    I am replying to my post with the hopes that someone can please help me!
    I am adding new episodes, but they don't show up on the main page. The most recent one to show up is from 10/29/07. I added a new episode today, but it doesn't appear on the main page (before you subscribe). Is there a limit to the # of podcasts that can appear on the main page? Has anyone else had this problem? All the relevant info is above.
    Your help is much appreciated.
    Message was edited by: oneness_podcaster

  • Why is it not showing anything after I plugged in my USB hard drive? I cannot locate the drive in my macbook. FYI this happened after few times using it.

    I need help as I am new to IOS.
    Currently it is not showing anything after I plugged in the hdd to my mac book.

    I had the same exact issue, which you can see in another forum.
    I "killed" both my MBP and my wife's MBP by plugging in my iPhone and getting a  message about USB drawing too much power.
    It was not fixed by using an SMC reset.
    I DID fix it by unplugging the battery, I left it unplugged long enough to remove the RAM, HD and put some RAM and HD back into place. (I initially swapped the RAM and HD from my MBP into my wife's MBP.
    After that everything was good, although upon first boot, some apps crashed because of the "system date" being set to a date before 2000. I forget the exact date, but it will be some time in 1984, the birthdate of the Macintosh. It is not a big issue, just correct the date and time.
    If you are curious about that date, copy a large file on your drive and look at the CREATED/MODIFIED date....it will show this same date, until the copy is complete, at which time you will see the correct one.
    Once again, try to disconnect your battery, very carefully by lifting up the connecter evenly on both sides to avoid damaging the connector or the board.

  • HT4623 itune is not showing iphone after updateing to IOS6

    itune is not showing iphone after updateing to IOS6

    Have you tried the Basic Troubleshooting Steps...
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • 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.
    >

  • Contact addresses not showing up after upgrading to ios 7

    Contact addresses not showing up after upgrading to ios 7

    Contact addresses not showing up after upgrading to ios 7

  • Lacie Rugged external drive will not show up after Yosemite update.

    Lacie Rugged external drive will not show up after Yosemite update.  It show up in disc utility I can't access it.

    I have the exact same issue. Have you had any luck with a solution?

  • I am trying to update a chart in Pages that I created in Numbers, but the refresh button does not show up after I save the Numbers file. Thoughts?

    I am trying to update a chart in Pages that I created in Numbers, but the refresh button does not show up after I save the Numbers file. Thoughts?

    It is hard to exactly understand what you have  done or not by you one sentence description. My thought is have you read in the Pages User Guide? Here is what it says about updating a chart in Pages:
    Updating a Chart Copied from a Numbers Document
    If you’ve created a chart in Numbers, you can copy it and paste it into your Pages document. After it’s been pasted into Pages, the chart remains linked to the data tables it references in Numbers. To change the chart data, open the original Numbers document and edit the data there, save the Numbers document, and then refresh the chart data in Pages.To update a chart after you’ve updated its linked Numbers table:
       Select the chart on the page and click the Refresh button that appears.
    Note: You must save the Numbers document before copying and pasting your chart into your Pages document and after editing the Numbers data tables that the chart references.
    I hope it has helped you.

  • LR5 - Watermark does not show up after exporting...??

    Does not show up after exporting...?? Any ideas???

    ccherrry wrote:
    Any ideas???
    Yeah, provide some details.
    Version 5.0 or 5.2RC?
    Mac? PC?
    Simple Watermark?
    Watermark Editor Created? Text-based? Graphic-Based
    Export format?

Maybe you are looking for

  • Asha 201 music sorting problem

    deat all i am not able to sort the music on my asha 201 by album name i have huge mp3 music files on my 32 gb card i  used mp3 tag software and give unique name for album but when go to media player and album option i dint find that album name instea

  • Accesing protectred URIs on Solaris (sparcv9) with WLS 10.3.5 and Apache2

    I had started to ask questions about this on another thread of mine, but since I had listed that one as answered and this being different from the original question on that thread...I felt it better to create its own thread. Problem Description: Envi

  • Scanning an ean code

    Hello I am trying to make a voting application . When I scan an EAN code the action I want to execute is an gotoAndStop action. The question is how do a make a listner for the scanning job ?

  • Acrobat 11 upgrade issue.

    I just downloaded the Acrobat 11 upgrade. When I click to open the application it automatically shuts down. Multiple tries, same issue. Any solutions?

  • Process chain suggestion

    Hi, I have 1 DS which is used to load 3 cubes say A,B,C. How sholuld i desgin my process chain. I mean will i have to create 3 IP for same DS. If that is the case how will the initialization work and also wont there be duplicacy of data in cubes (at