Header and Welcome disappearing in PDF Portfolio

Good day,
The Header and Welcome pages disappear in my PDF Portfolio after saving and closing. It appears to be related to the most recent update, as I don't remember having this issue before. If I create the document from scratch and save, it appears on the first open; however, if I edit that document the problem repeats itself. These Portfolios will need to be updated on a fairly regular basis, and I would prefer not to have to constantly re-create them if possible.
I tried the trial of X (had heard bad things), but it doesn't have the same choices for layout styles and the file size has increased dramatically from 9 to X, likely related to upgraded look and feel (which feels cartoonish to me).
Any suggestions on how to fix this issue?
Version 9.4.3 or X, if you can provide a source for layouts that allows a file preview.
Thanks,
Chelsea

Hi Chelsea,
This may be a known bug. See thread http://forums.adobe.com/message/3491158#3491158 , specifically the scenario/workaround Josh_Corey posted on March 7th at 6pm.
Does that resolve the issue?
Laura

Similar Messages

  • How to add header and footer image in pdf

    Hi,
    I want to add image in header and footer for the pdf generation.
    how I can add this? Following my xsl
    ?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:fn="http://www.w3.org/2005/xpath-functions">
    <xsl:output method="xml" indent="yes" encoding="utf-8" omit-xml-declaration = "yes" />
    <xsl:template match="/">
    <fo:root>
    <fo:layout-master-set>
    <fo:simple-page-master master-name="my-page">
    <fo:region-body margin="1in"/>
    </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="my-page">
    <fo:flow flow-name="xsl-region-body">
    <fo:block >
    <xsl:apply-templates mode="dump" select="/session/entity/instance/attribute"/>
    </fo:block>
    </fo:flow>
    </fo:page-sequence>
    </fo:root>
    </xsl:template>
    <xsl:template match="*" mode="dump" priority="100">
    <fo:block >
                   <fo:block margin-left="1cm">
                        <xsl:for-each select="@question-text">
                        <xsl:value-of select="."/>=
                        </xsl:for-each>
                        <xsl:if test="string-length(normalize-space(text())) > 0">
                        <xsl:value-of select="text()"/>
                        </xsl:if>
                   </fo:block>
    <xsl:apply-templates mode="dump" select="*"/>
    </fo:block>
    </xsl:template>
    </xsl:stylesheet>
    Edited by: 848231 on Apr 6, 2011 1:42 AM

    Hi,
    Here is one way of putting an image in the header:
    <fo:layout-master-set>
        <fo:simple-page-master master-name="my-page">     
          <fo:region-body margin="1in"/>
          <fo:region-before extent="1in" background-color="silver" />
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="my-page">
         <fo:static-content flow-name="xsl-region-before">
             <fo:block height="150px" width="1024px" background-color="white" >
                 <fo:external-graphic src="http://localhost:9000/web-determinations9000/images/Header.jpg">
                 </fo:external-graphic>
            </fo:block>
        </fo:static-content>
        <fo:flow flow-name="xsl-region-body">
        </fo:flow>
      </fo:page-sequence>One good XSL:FO refernce: http://www.learn-xsl-fo-tutorial.com
    Hope this helps.
    Thanks,
    Aakarsh
    Edited by: aakarsh on Apr 6, 2011 6:40 AM

  • Unsupported version Error while generating header and footer for the PDF

    hi
    I want to genrate header and footer for the PDF file however on the call of the EndPage class i got a Unsupported Version Error Unsupported major minor Version Error and Class loader Define class
    What has gone wrong ?.

    Can you provide more information about what you were trying to do? In particular, what does your code like like?
    Also, can you include the stack trace, and the complete error message?

  • How do I create a welcome page for PDF portfolio in Acrobat X?

    When making portfolios in v9 i was able to add a welcome page to my PDF portfolio. However, since I upgraded I am no longer able to locate this fucntion. Does it still exist and if so how do i access it? If it doesn't exist can anyone explain to me why Adobe would think it wasn't a relevant feature and disable it in vX?

    You need to setup a script to handle this for you.  Typically most people do this with a solution like CPanels Web Host Manager.  But it depends on your server environment what you would use.

  • Cannot copy and paste descriptions in PDF Portfolio

    I am using Adobe Acrobat Pro 9.5.1 on a Windows 7 laptop.  Since a recent update I am unable to copy the description in a PDF Portfolio and paste it back.  I used to be able to copy the description; delete the file; add an updated file and then paste the description back.  Now I have to re-type the description.  I cannot event copy and paste a description from another PDF portfolio.  Can you advise why this is so and is there a workaround?

    Adobe does not report the progress of bug reports to the public, nor can I comment on the timescale for any future updates or what they may contain. Priority is of course given to the current Acrobat X Family and recently-announced Acrobat XI Family.
    Copy/paste between all the file details fields in PDF Portfolios is fully functional in Acrobat X Pro (which currently has a captive install of Flash Player) and in Acrobat XI Pro (which does not). I don't have an install of 9.5.1 to test your bug report against, but whatever is causing the issue in your case it's not an intentional change.

  • How do i add images in the header and footer to a PDF using iText

    Hi ,
    I want to add images to the header and footer of every page while i am genrating a pdf i have created a separate class called EndPage which i am instanceiating its default constructor in another class 's button action method.
    The above code genrates a PDF for me however it genrates a file with file size zero bytes and does not open it following is my sample code
    //**********Any Help would be appreciated
    Thank You
    public class My_Class
    public String pdf_action()
    EndPage ep=new EndPage();
    return null;
    }//My_class Ends
    class EndPage extends PdfPageEventHelper
    * Demonstrates the use of PageEvents.
    * @param args no arguments needed
    public EndPage()
    try {
    com.lowagie.text.Document document = new Document(PageSize.A4, 50, 50, 70, 70);
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("D://proposals/endpage.pdf"));
    writer.setPageEvent(new EndPage());
    document.open();
    String text = "Lots of text. ";
    for (int k = 0; k < 10; ++k)
    text += text;
    document.add(new Paragraph(text));
    document.close();
    catch (Exception de) {
    de.printStackTrace();
    public void onEndPage(PdfWriter writer, Document document) {
    try {
    Rectangle page = document.getPageSize();
    PdfPTable head = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    head.addCell("head " + k);
    head.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    head.writeSelectedRows(0, -1, document.leftMargin(), page.height() - document.topMargin() + head.getTotalHeight(),
    writer.getDirectContent());
    PdfPTable foot = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    foot.addCell("foot " + k);
    foot.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    foot.writeSelectedRows(0, -1, document.leftMargin(), document.bottomMargin(),
    writer.getDirectContent());
    catch (Exception e) {
    throw new ExceptionConverter(e);
    }

    Hi,
    Thanks for the quick response.
    The problem is that when I keep the logo as a watermark, the pdf is not adjusting itself to include the logo as header.
    But if I add a header text via Tools -> Headers and Footers, the pdf is adjusting itself so that the header text is at the beginning , not overlapping with the contents of pdf.
    But while using logo as watermark, some times overlapping of the pdf contents and logo is happening.
    Is there any way to add a logo in the Header and Footer via the option in Tools -> Headers and Footers
    Thanks,
    Vidhya

  • How to set default Header and Footer properties for PDF

    Hi,
    Currently we are manually setting the 'PDF and Print Control' properties for each and every dashboard. We understand that print pdf properties are controlled by pdfstyle.fst file under $SAROOTDIR\web\app\res\s_oracle10\b_mozilla_4 but don't have the exact property names to include in header and footer section.
    By default, we want to include company logo, the saved name of the report/dashboard tab and created time in the header. And page# in the footer.
    Where can we set these and what properties names should be used in order for these to be set for every new request/dashboard that is created.
    Thanks and Regards

    Hi,
    I created one request with logo in the header an page in the footer etc. and called StyleSheet. After you can import this formats by each request.
    You can do this in compound layout.
    Regards,
    Stefan

  • Error occured while genrating header and footer for the PDF

    Hi All ,
    I am getting a following error whenever i try to excecute the code to print header and footer while genrating a PDF what could be the reason.Any help would be greately appreciated. following is the error stack trace: i am excecuting it in the command prompt an using jdk1.5.0.1
    C:\Program Files\Sun\Creator2_1\java\Test>java EndPage
    Exception in thread "main" java.lang.UnsupportedClassVersionError: EndPage (Unsu
    pported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:502)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
    3)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:250)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:54)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)

    Looks like the EndPage class was compiled with a later version of Java (49.0 == Java 1.5) and you are trying to run it with older version of java.exe. Type
    java -version
    to verify.
    Also this forum is for Sun Java Studio Creator related questions. Please ask such questions on java tools forum.
    Sandip

  • Add Header and Footer in PDF-presenation, Photoshop CS3

    Hi
    How is it possible to make at Header and Footer in a PDF-Presentation generatet in Photoshop CS3 without placing it on every image. Is there a setting (I have not found it) where you can predefine this?
    Best regards/Jean

    hi,
    //changing the font of the rows populated
    u can create Font instance like this:
    Font fontName= new Font();
    fontName.setSize(7.5f);
    fontName.setStyle(fResDetails.BOLD);
    fontName.setColor(255, 91, 91);
    // In the following code you are adding a cell with name 'cellName' to the Table.Here table is an instance of the Table class.
    PdfPCell cellName = new PdfPCell(new Phrase("columnHeader", fontName));
    table.addCell(cellName );
    cellName .setHorizontalAlignment(Element.ALIGN_LEFT);
    cellName .setVerticalAlignment(Element.ALIGN_LEFT);

  • Header and footer in pdf

    hi i want to include a header and footer in the pdf that i have generated using iText library.
    Please help
    also i want to change the font of the rows that i populate.

    hi,
    //changing the font of the rows populated
    u can create Font instance like this:
    Font fontName= new Font();
    fontName.setSize(7.5f);
    fontName.setStyle(fResDetails.BOLD);
    fontName.setColor(255, 91, 91);
    // In the following code you are adding a cell with name 'cellName' to the Table.Here table is an instance of the Table class.
    PdfPCell cellName = new PdfPCell(new Phrase("columnHeader", fontName));
    table.addCell(cellName );
    cellName .setHorizontalAlignment(Element.ALIGN_LEFT);
    cellName .setVerticalAlignment(Element.ALIGN_LEFT);

  • Disappearing header and footer

    I have a problem that has only recently started to happen. We
    are running x5 and have two projects that are virtually identical.
    In fact one started off as a copy of the other. Now when a topic is
    imported from one project into the other the header and footer
    disappear. This did not happen previsouly.
    Does anyone know what may be causing this?

    That's correct. When an author makes a major revison to the
    technical content they change the date in the header.
    We have a number of authors and the project provides help to
    users both in GB and Northern Ireland so there is a good quantity
    of tagged content. We had loads of issues with authors not tagging
    content correctly and web helps being produced with part completed
    topics. So we have a development project where all the work is done
    and a live project that the tech support import completed topics
    into and use for generation of the four outputs. Complicated I know
    but it designs out some user error issues.
    We had some source control issues and had to create a new DB
    for the live project. It is not certain but it appears either at
    that time or arouond then the header issue appeared. (we are hoping
    to move to RH7 ASAP as DB errors are too comon at present). One of
    my team created the new database and I had assumed this could not
    be the issue as it is such a simple task. I can't understand why if
    HTML code is stripped from a topic it is only the header and
    footer. It's not just the content it's the whole thing.
    I'm sure some numpty has changed a setting somewhere but I
    can't see it!

  • Add Header and Footer in Live Cycle ES2

    Hi,
    We are quite new to the use of live cycle pdf generation. Can anyone help us with information as to how we can add header and footers to our pdf files using livecycle ES2.
    And further, we would like to know whether header and footer adding is available in the trial version of Livecycle ES2?

    Hi,
    Thanks for the reply.
    We have another newly raised problem in the header and footer adding from Livecycle ES2. According to the PDF that you referred in the previous reply, we can add graphics to the PDF header, but we are unable to find a DDX tag that would enable us to add a image URL.
    Can you please help us again on the above?
    Purnima

  • How to remove header and footer from a "blank" page in Pages?

    Hi,
    In the top and the bottom there seems to be a header and footer, it noticeable when i do "mouse over". But when i right click i don't get the option to delete it. I cannot move it. I cannot move any other text or colums above it.
    ??? Help

    +Inspector > Document (1st tab) > Document > Uncheck Header and Footer+
    The Pages09_UserGuide.pdf is available for download under the Help menu and is a good read.

  • Acrobat XI on Win8.1 asks for Flash to create a Pdf Portfolio?

    I've been running Acrobat X for a year or so and have created many pdf portfolios, but recently installed a trial version of Acrobat XI on my Windows 8.1 PC.  I then tried to create a portfolio from scratch, selected the files and got a message "To view the Flash technology content in this PDF file, please install this version of Flash Player that supports Adobe Reader and Acrobat." 
    The Flash Installer link nor the ActiveX link will download for me and when I read further I find out that Win8.1 already includes Flash built in.  I go to the Flash test page and it tells me I have the latest Flash version installed.  I also do the Internet Explorer recommended checks (Shockwave, ActiveX filtering), all to no avail.  I don't know what else to try?  Any thoughts... 

    When I click on the “Plugin” and select “Save As” I try to save to my Desktop the File name: install_flash_player_exe.  The yellow bar at the bottom immediately says “ install_flash_player_exe couldn’t be downloaded.”  I try the “Retry” button multiple times to no avail.  I then select the “View downloads” button and it shows that it only downloaded 254 bytes of said file from the site “fpdownload.macromedia.com” and the message “This file couldn’t be downloaded.”

  • Adobe Reader not opening PDF Portfolio - Flash player error

    I have Acrobat 9 Standard installed on my PC and I created a PDF Portfolio. Acrobat Standard can open that Portfolio just fine.
    I also have Acrobat Reader installed (11.0.2).and have Adobe Flash Player (11.7.700.169) installed. Both Reader and Flash Player work fine independently on PDF or Flash content.
    However when I try to open the PDF portfolio with Reader, I get the following Error:
    :"To view the Flash technology in this FDF file; please install this version of Flash player that supports Adobe reader and Acrobat".
    The Dialog box with the message above has a [Proceed to download page] button (which does nothing but bring up Reader with a black page), a [Learn more] button (similar behavior), and a [Cancel] button.  Both Reader and Flash are the latest versions as of today (4/16/2013).
    Any help or insight with this is appreciated.
    Thanks !
    Bruce Dana.

    Thank you.  What you suggested di the trick !
    Bruce Dana, PE, CPM
    Manager, Engineering / CADD Systems Office
    Florida Department of Transportation
    Engineering / CADD Systems Office
    605 Suwannee Street, Mail Station 69
    Tallahassee, Florida  32399-0450
    • Voice: (850) 245-1606
    Toll Free: (866) 374-3368 extension 1606   | Fax: (850) 245-1601
    • E-mail: [email protected]<mailto:[email protected]>      | Web: http://www.dot.state.fl.us/ecso
    How am I doing?  Please contact my Director, Duane Brautigam, PE -  Office of Design at:
    [email protected]<mailto:[email protected]> with any feedback.
    THINK GREEN: Before printing this e-mail please ensure it is necessary - conserve our resources!
    Pursuant to Section 119.011 (11), Florida Statutes, all electronic communications made or received by Florida’s Department of Transportation, including its officers, employees and agents, are public records.  Unless exempted under Section 119.07(6), Florida Statutes or another statute, all public records may be inspected and copied by any person desiring to do so under the supervision of the custodian of the public records.

Maybe you are looking for