PDF Embed Not Showing

I am just trying to embed a PDF in my SharePoint 2013 page.  I open the page, click on Edit, select the INSERT | Embed Code option, paste in the following:
<object width="610" height="400" type="application/pdf" data=" http://slg-web/schools/5407/SLG/Shared%20Documents/wcgs_newsletter_spring_2014.pdf "></object>
The Preview shows just right, but when I click on Insert to return to the page, it displays Loading... for a second, then disappears. What am I doing wrong. I am using IE10 in compatibility mode, the SP install has Permissive set for the File handling and Acrobat
Reader is installed.  In Chrome I get the same issue, so it has to be a SP2013 issue.
Please advise as in MOSS2007 it was easy, insert a content editor webpart and insert a similar bit of code.  It worked fine.
I can embed YouTube videos with ease, its just frustrating when the preview shows the file, but then does not work.

Hi,
Please refer these links:
http://aalamrangi.wordpress.com/2012/10/16/how-to-embed-a-pdf-document-in-a-sharepoint-wiki-page-with-a-page-viewer-webpart/
http://www.sharepointanalysthq.com/2011/03/embedding-pdfs-into-sharepoint-2010-pages/
And if the pdf file is stored in document library if you hover over the "...." you will get an option "Embed Information" from where you can get the code. You can then use the code in your content editor web part or content area...Hope the
information helps

Similar Messages

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

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

  • PDF file not showing correctly in Preview or other apps

    Hi,
    I've trying to find an answer to my question for some time now on the internet, but couldn't find it anywhere. When I open a pdf file from someone who created it using Windows diagrams that are supposed to be Matrices are not showing properly. Most probably the matrices were created using the equation builder in MOffice.
    <-- this is supposed to be a matrix
    There is also a problem with showing symbols like subscripted or superscripted letters (Arrows represent superscripted or subscripted letters, either up or down):
    And for some reason, when I try to quicklook the file, some pages are displayed incorrectly - only showing a quarter of the page:
    Any help on this? Is there some sort of an update to solve this problem, or should I download additional fonts??
    I am using a Macbook Alu from 2008 with OS X Maverick installed - all latest updates are installed.. (However the same problem appeared when using an iPad)
    Thanks a lot i advance!

    Hi Carolyn,
    I looked at your file and it seems the problem is with the resolution. The design is great but the resolution was too low.
    Fortunately your Apple Smart Object was high resolution so I was able to increase the resolution of the file as it is. You will need to replace the Bar Code and possibly the little flower on the back cover with high res versions.
    In the future you need to start with the document being sized right and the resolution at 300 ppi. Make sure your graphics are high resolution from the start as well. You can't regain resolution that was left out, although using High Resolution Smart Objects can give you the the latitude you need to size back up.
    After I sent the file I looked closely at the font. The one font you used does have zaggies but it's supposed to. Bradley Hand ITC TT is kind of a rough font around the edges by design. If this is what seems to be the problem, you will need to change to another font. Still, the file needed to be higher resolution.
    I sent one back to you in high res. All you need to do is replace the bar code and the little flower with high res version. The apple graphic smart object was high enough.
    Linda

  • Why do changes to a .pdf file not show up in iBooks?

    I have a number of important and useful documents in .pdf format that are stored in iBooks on my iPad.  I added a new document to the iTunes library and then synced the iPad.  Voila!  The new document showed up in the PDFs section of the iBooks collections.  Then, I recognized that I needed to update some information in the document, so I opened the original (on my Mac) in Adobe Acrobat and added a few comments using the Typewriter tool.  I then reimported it to the library in iTunes, then synced the iPad again.  My added material was not in the document as it appeared in iBooks.  OK, I deleted it from iTunes, synced the iPad again and the file was gone from iBooks, as I intended.  I then reimported the new file with the added material into the iTunes library and synced again.  The file still did not show my added material.  I can look at the file in iTunes, Adobe Acrobat, Adobe Reader, even Preview and the file looks fine.  I even changed the file name.  The only place it does not look right is in iBooks.  I can print it in any of the aforementioned applications and it looks fine.  I suppose I could print it, scan it and then import it to iTunes yet again, but that seems to be kind of a stupid workaround.
    I have done everything I can possibly think of.  I have deleted the file from iBooks on the iPad, then deleted the file from iTunes, restarted, burrowed into the iTunes Library file (Users->myname->Music->iTunes->iTunes Music->Books->filename) and deleted the file directly from there and then emptied the Trash, restarted the iPad after deleting the file from iBooks, tried adding the information as a text box in Acrobat (instead of using the Typewriter), I've shaken my fist repeatedly, burned some white sage, even considered throwing my iPad across the room.
    In desperation, I finally printed and scanned the page I needed, then opened the original file in Acrobat, added the new page and deleted the old one.  Then, I reimported the file into iTunes and synced the iPad.  Now I have what I need with the same file name as before.  It's actually the same file, just modified by swapping pages.  But, why in the **** can I not just add what I want to that particular page using Acrobat and then reimport that?
    I am not a newbie.  I still have my old Mac Plus out in the garage.  I use Acrobat, Photoshop, Bridge and InDesign on a regular basis, so I am no stranger to Adobe products.  Am I missing something?  Something unbelievably simple?
    (OK, deep, cleansing yoga breath...)
    Even though I found a workaround, I'd still like to know why I couldn't do what I wanted to do.

    Thanks, Demo, I'll give that a shot. On the other hand, I really don't want to have some files in iBooks and other ones in Adobe Reader. If Adobe Reader will let me organize them in folders, it might be a great solution.
    However, there's no ".pdf management" involved here. It's simply "Read the #%€\#^% .pdf file I gave you" and there is nothing to "manage". Whatever opinions Apple has about Adobe, .pdf is a fact of life and should not require any handstands and backsprings just to read a file. (Are you listening, Apple?) I refinanced my home with .pdf files; print it, sign it, scan it, e-mail it back. (OK, calm down, it'll be all right... Sigh...)
    Whatever the result, I'll report back.
    Thanks again.
    Jeff B

  • Adobe PDF Printer not showing -- no fix found yet

    The Adobe PDF printer is no longer showing on a system in the office. It's running Windows 7 Professional x64. The Adobe Acrobat version is Pro X.
    I have tried litereally everything I could find here in the forums and elsewhere, including uninstall, clean-up (using the Adobe tool), reinstall, maually printer install attempts (failed), manual removal of all printer ports relating to Adobe PDF documents etc. Nothing worked.
    Adobe Acrobat itself is working perfectly fine, but the PDF printer is not showing anywhere, or working. I had to install an alternative for now (PDF Creator), but obviously that's not an acceptable solution. The issue started, I believe, after some tax software package was installed that had its own PDF printer. The software has since been removed, and all troubleshooting has taken place after.
    System restore is also no option, since it doesn't go as far back.
    If anyone has any further suggestions, it would be very much appreciated. I am an IT professional, I'm comfortable with registry rediting or similar if that is what it takes, I'd just like to find a fix, and so far I've exhausted everything I could find (including Experts Exchange).

    Try this process.  If you get any errors then screenshot them and post them back to the forum.
    Try this to add Adobe PDF printer manually on Windows 7.
    If windows 7 is Enterprise or better edition: (Admin rights required)
    Start>search for printmanagement.msc and open the print management module
    Expand the print server and expand the computer name to see availbale printers, drivers and printer ports.
    - from printers ensure there's no Adobe PDF printer, if there is delete it
    - go to ports and delete the PDF ports (the ones ending in *.pdf)
    - go to drivers and delete the PDF converter.
    Take note if any errors occur, but continue with the following steps regardless.
    If on windows 7 home edition, just goto start>Devices and Printers and ensure PDF pritner is not listed.
    Then open the registry (if any erors deleting these keys happen, see below)
    1: go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers
    delete any adobe PDF printer subkey present
    2: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors
    delete the PDF port monitor if present
    3: go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers
    again delete and pdf printer subkey
    If any erros occur, you need to set the owner of the key to the currently logged in admin user, then ensure that user has full control.
    Do this by right-click the key and selecting permissions, clicking on advanced, then the owner tab.
    Once all that has been done, open a command line as administrator.
    Copy and paste the following commands in order
    1: net stop spooler
    2: rundll32.exe setupapi.dll,InstallHinfSection AdobePDFPortMonitor 128 C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf
    3: net start spooler
    4:rundll32.exe printui.dll,PrintUIEntry /if /b "Adobe PDF" /f "C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\AdobePDF.inf" /r "Documents\*.pdf" /m "Adobe PDF Converter"
    That should set back the pdf printer.

  • Exporting pdf does NOT show my headers and footers

    I export number files to my administrators. I've noticed when I print my file directly from my computer in iWork/Numbers it prints and show the footer and header. However, when I send a bcc to myself when I attach the pdf file to my administrator, it does not show or print my headers and footers. Any ideas?

    Re-reading the original question, it does appear that Gogoette is exporting to PDF then attaching the file to an email versus using the "Send via email as PDf" operation. In that case, setting it to Page View for the export will solve the problem. I had originally thought "Send via email as PDF" was being used. What I noticed is that it doesn't give you the choice of page versus sheet view but if you first go through the motions of exporting, it sets it up. In prior threads about exporting to PDF, we have all recommended using Print, not export, and choosing Print to PDF (rather than to a printer) as the best way to create a PDF. It gives more flexibility, such as allowing you to choose which pages to "print to PDF".

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

  • PDF file not showing context

    After upgrading to ML I have recived a PDF that if I open with Preview only shows me part of the info (layout tables and bullets) but the text does not show!
    The text works for the windows users and I can see it in OmniGraffle.
    Anyone an idea what's wrong?
    Is it the PDF (i.e. the user who made it) or has it got to do with limitations within preview?
    Kind regards,
    Dani

    Please post a sample of the PDF file itself. If you are not embedding the font in the PDF file, but the PDF file doesn't properly provide the font's name, this symptom will occur. Give as a link to the file and we'll take a look at if for you.
              - Dov

  • Photos in pdf documents not showing on iPhone or iPad

    I notice that when I create a PDF document on my iMac that includes photos and some grpahics work, when I go to view the document on my iPhone 4, iPhone 3 or iPad that about 80% of the photos do not show even though they look fine on the iMac... Why is this?

    Currently both are active. I don't want to have all of my photos on the icloud.  So should I only be using "icloud photo sharing"?
    I created an album on my iphone and this album shows up on my ipad and macbook pro.  However, I created another album on my macbook and this new album doesn't show up on either my iphone or ipad.
    These albums are not shared albums...they are only albums for me. Isn't "icloud photo sharing" different from the albums I speaking about?  My understandind is "icloud photo sharing" is for sharing my albums with friends and family.
    Thanks for your help

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

  • PDF checkmark not showing when click in box

    Hi,
    I'm having trouble with PDF not showing check mark when clicking inside the box.  Is there a way I can setup it manually.
    Adobe Reader XI
    Version 11.0.06
    Windows 7 Professional 32Bit
    Thanks,
    Retsel07

    It's most likely a problem with the way the author of the file set up the field. You should report it to them. You can't do much about it in Reader.

  • Firefox PDF reader not showing watermarks

    Firefox PDF reader is not showing watermarks.
    People can see (and print?) my free samples minus the watermarks that are in them.
    eg at lauriewilliamsmusic.com/composers/laurie-williams/auld-lang-syne/
    Watermarks were put in by PDFill Free PDF Tools and always show up in Adobe Reader.
    I never imagined that such a failure could happen until I was checking things today and saw it. Not good.
    Just realised that this thing is asking about my browser. I'm writing this in Chrome but I have the latest version of Firefox.

    Hi Laurie,
    I appreciate the issue & problems it causes you, however this is not the best place to ask.
    TL:DR
    Explain the issue very briefly in a suitable mailing list/forum
    #See listing https://www.mozilla.org/en-US/about/forums/
    #* This one would seem approprite to ask about the technical aspects [https://www.mozilla.org/en-US/about/forums/#dev-pdf-js #dev-dpf] <br /> And possibly this one to ask about the watermarks being defeated [https://www.mozilla.org/en-US/about/forums/#privacy #privacy]
    #* Initially Ask for advice in where to discuss this mater if not their forum. Ensuring you make the point it is a global Firefox issue with a Firefox default feature and not a site specific problem.
    #Post back here to keep us informed of your progress, including links to the conversations..
    I must immediately say I do not know the first thing about the technical aspects of the Firefx PDF reader.
    I surmise that it is not a deliberate intention to remove the watermarks but a limitation in the PDF reader's ability to support such a feature. However I could be wrong as there are people who would; no doubt; argue Firefox should not support watermarks, as that restricts free access to material on the Web.
    This is not the place for any such discussion about internet rights. Neither do we discuss development decisions and policies. It is often difficult to find anywhere on Mozilla where they do discuss anything like that retrospectively.
    IIRC Admin Staff on this site agreed to identify and list any such resources, but I don't recall anything being done about that.
    You could just file a bug (I could help if necessary) for such a feature, however it would be much better to start a discussion about this first with the people concerned. A bug filed without prior discussion with module owners may well be effectively ignored.
    I've flagged this as offtopic, but I will not lock the post until I know you have found somewhere to discuss this.

  • Quicktime embed not showing controls

    I have several embedded quicktime movies on my website, for some reason they do not show the controls even though the embed and object tags specifically say to controller=true.
    Is this a factor of the file itself, what is the fix?

    Adding a controller requires you add 16 pixels to the actually file height.
    e.g. a 320X240 QuickTime file would use 320X256 in the html page code.

Maybe you are looking for

  • Webutil_file_transfer consuming a lot of memory and doesn't release...

    I'm facing a problem with webutil_file_transfer.client_to_as_with_progress when I'm transferring many files from the client to the server. Suddenly webutil stops the transferring and webutil doesn't work until I've restarted the form. I've noticed th

  • Problem while setting response header in a filter

    Hi, I am intercepting response in a filter and trying to modify the response header, so that my subsequent class would get the header in request . Somehow i don't get the header in request. I don't know whats going wrong. I have few more filters othe

  • Micro SD encrypted card

    I had a nokia E72 and i encrypted my sd memory card. Recently i removed the sd card and sold my E72 Nokia. I know the password used when i encrypted it. Is there any way i could recover my file from the sd card? 

  • Split a filmstrip/clip in event library.

    I have imported an old mini dv-8 movie in imovie and somehow it has become one long filmstrip/clip in the event library. I would like to split and divide this clip in and over more events. Does anyone knows how? (I know that it is not possible with i

  • Restart MAC Pro in Windows Partition

    I have a black screen with the message: "Data missing Restart: Push a tab..." But nothing happens... no response of my MAC.