Enable Comment XML in InDesign

Hi All,
I want to enable all comment tag in InDesign before exporting to xml. It is viewed in InDesign Structure Panel like the following picture.
Thanks,
Mahesh

Hi Moorthy
I understand that you want to to work with XML. I just don't get what excactly you want to performe. What do you mean with «enable all comments».
Please give us more information, which version of indesign you use and an example file would also be helpfull.
kind regards
Dani (from Switzerland)

Similar Messages

  • Do you need to generate HTML table rows from XML in InDesign?

    General issue: you export XML and you get a bunch of content for xml elements that were a table in inDesign. But they don't have any rows, just cell after cell. What will make rows in your output?
    Solution: XSLT; you need to use the @aid:tcols attribute of exported XML to determine the number of columns that your table should be. This is written in XSLT 1.1 so it shoud work with an export from InDesign. If you have problems with using it on export of XML, try using it on the XML afetr it has been exported, in Oxygen or other XSLT processor. Best to save acopy of your files before using the XSLT with them.  Copy all of the plain text and past into a new file, save with your own filename, ending with .xsl file extension. Then when exporting XML from InDesign CS3-5, browse to your new .xsl file and select it. PLEASE read about XSLT files at w3c.schools or other resource if you want to understand what is going on with this file.
    BTW <!-- indicates comments in code -->
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- NO WARRANTY that this example code will work as written for your XML file in InDesign. You can add more templates to the output to map your heading styles to h1, h2, etc. -->
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"
        xmlns:aid="http://ns.adobe.com/AdobeInDesign/4.0/"
        xmlns:aid5="http://ns.adobe.com/AdobeInDesign/5.0/" exclude-result-prefixes="xsl aid aid5">
        <xsl:output method="html" indent="yes" encoding="UTF-8"
            doctype-public="http://www.w3.org/TR/xhtml/DTD/xhtml-transitional.dtd"/>
    <!-- parameter to use the name of element with attribute aid:theader as the th output -->
        <xsl:param name="tableElem">//*[local-name()][@aid:table='table']</xsl:param>
        <xsl:param name="colheadStyle">
            <xsl:value-of select="//*[local-name()][@aid:theader][1]"/>
            <!-- i.e. colHead-->
        </xsl:param>
    <!-- parameter to use the name of element with attribute aid:cell but not aid:theader as the td  output -->
    <!--i.e. tabletext or whatever the name of your Cell level  element is in InDesign -->
        <xsl:param name="cellStyle">
            <xsl:value-of select="//*[local-name()][@aid:table='cell' and not(@aid:theader)][1]"/>
        </xsl:param>
        <!-- handles a Story element marked up with HTML-type elements, but uses the <Table> element of IDD  -->
        <!-- if a true HTML table is in the content, it will be passed through -->
        <xsl:template match="Story"><!-- make a basic HTML file from a Story -->
            <html>
                <head>
                    <title>Sample Table</title>
                </head>
                <body>
                    <xsl:apply-templates><!-- will handle direct text of the  <Story>, and <Table> -->
                        <xsl:with-param name="colheadStyle" select="$colheadStyle"/>
                        <xsl:with-param name="cellStyle" select="$cellStyle"/>
                    </xsl:apply-templates>  
                </body>
            </html>
        </xsl:template>
       <!-- use the styles to find the elements of IDD <Table> element -->
        <xsl:template match="Table">
            <xsl:param name="colheadStyle">
                <xsl:value-of select="$colheadStyle"/>
            </xsl:param>
            <xsl:param name="cellStyle">
                <xsl:value-of select="$cellStyle"/>
            </xsl:param>
            <xsl:variable name="cellsPerRow">
                <xsl:value-of select="@aid:tcols"/>
            </xsl:variable>
            <table><!-- start the table -->
                <!-- xhtml requires lower-case name for table element-->
                <tr>
                    <xsl:apply-templates select="*[@aid:theader='']">
                        <xsl:with-param name="colheadStyle" select="$colheadStyle"/>
                        <xsl:with-param name="cellStyle" select="$cellStyle"/>
                    </xsl:apply-templates>
                </tr>
                <!--  and @aid:style=$cellStyle -->
                <xsl:for-each
                    select="*[@aid:table='cell'][not(@aid:theader='')][position() mod $cellsPerRow = 1]">
    <!-- some code adapted with  permission, from http://www.computorcompanion.com/LPMArticle.asp?ID=202
    Building HTML Tables with XSL by James Byrd; please include this acknowledgement in all files that use his code -->
    <!-- this is the tricky bit of the code that James Byrd set up
    p-class-tabletext-[position() mod $cellsPerRow = 1 continues looping until the position of the active element divided by $cellperRow (@aid:tcols value) tried with [@aid:style=$cellStyle] has a remainder of 1 -->
    <!--  .|following-sibling::p-class-tabletext-[position() &lt;  $cellsPerRow] applies first to the currently selects cell with "." then continues with the following-siblings whose position is less than  the value of cells per row (@aid:tcols value) -->
                    <tr>
                        <xsl:apply-templates
                            select=".|following-sibling::*[@aid:table='cell'][not(@aid:theader='')][position() &lt; $cellsPerRow]"
                        />
                    </tr>
                </xsl:for-each>
            </table>
        </xsl:template>
        <xsl:template match="*">
            <xsl:param name="colheadStyle">
                <xsl:value-of select="$colheadStyle"/>
            </xsl:param>
            <xsl:param name="cellStyle">
                <xsl:value-of select="$cellStyle"/>
            </xsl:param>
            <xsl:variable name="cellsPerRow">
                <xsl:value-of select="parent::Table/@aid:tcols"/>
            </xsl:variable>
            <xsl:choose>
                <!-- colHead aid:table="cell" aid:theader=""-->
                <xsl:when test="parent::Table and @aid:theader">
                    <th>
                        <xsl:apply-templates>
                            <xsl:with-param name="colheadStyle" select="$colheadStyle"/>
                            <xsl:with-param name="cellStyle" select="$cellStyle"/>
                        </xsl:apply-templates>
                    </th>
                    <xsl:if test="(position() = last()) and (position() &lt; $cellsPerRow)">
                        <xsl:call-template name="FillerCells">
                            <xsl:with-param name="cellCount" select="$cellsPerRow - position()"/>
                        </xsl:call-template>
                    </xsl:if>
                </xsl:when>
                <xsl:when test="parent::Table and @aid:table='cell' and not(@aid:theader)">
                    <td>
                        <xsl:apply-templates>
                            <xsl:with-param name="colheadStyle" select="$colheadStyle"/>
                            <xsl:with-param name="cellStyle" select="$cellStyle"/>
                        </xsl:apply-templates>
                    </td>
                    <xsl:if test="(position() = last()) and (position() &lt; $cellsPerRow)">
                        <xsl:call-template name="FillerCells">
                            <xsl:with-param name="cellCount" select="$cellsPerRow - position()"/>
                        </xsl:call-template>
                    </xsl:if>
                </xsl:when>
    <!-- for non-table elements this generic element handler will  pick up an aid:pstyle (if present) and create a class attribute from it. Works for any element that has the same name as HTML element such as <p> but it doesn't add wrapper elements like <ul> or <ol> for lists. -->
                <xsl:otherwise>
                    <xsl:element name="{name()}">
                        <xsl:if test="@aid:pstyle">
                            <xsl:attribute name="class">
                                <xsl:value-of select="@aid:ptyle"/>
                            </xsl:attribute>
                        </xsl:if>
                        <xsl:apply-templates>
                            <xsl:with-param name="colheadStyle" select="$colheadStyle"/>
                            <xsl:with-param name="cellStyle" select="$cellStyle"/>
                        </xsl:apply-templates>
                    </xsl:element>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>
        <!-- take care of text that is a direct child of the <Story> by wrapping it in a <p> to make valid HTML -->
        <xsl:template match="text()">
            <xsl:variable name="myString">
                <xsl:value-of select="string-length(normalize-space(.))"/>
            </xsl:variable>
            <xsl:choose>
                <xsl:when test="parent::Story">
                    <xsl:if test="$myString > 0">
                        <xsl:element name="p">
                            <xsl:attribute name="class">text</xsl:attribute>
                            <xsl:value-of select="normalize-space(.)"/>
                        </xsl:element>
                    </xsl:if>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="normalize-space(.)"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>
       <!-- make br element conform to good HTML markup -->
        <xsl:template match="br">
            <br />
        </xsl:template>
        <!-- this recursive template calls itself until its test condition is satified -->
        <!-- it outputs a cell whose only content is a non-breaking space -->
        <!-- do not use   in place of Unicode &#160; for the non-breaking space -->
        <!-- the value of $cellCount is set in the main XSL template -->
        <xsl:template name="FillerCells">
            <xsl:param name="cellCount"/>
            <td>&#160;</td>
            <xsl:if test="$cellCount > 1">
                <xsl:call-template name="FillerCells">
                    <xsl:with-param name="cellCount" select="$cellCount - 1"/>
                </xsl:call-template>
            </xsl:if>
        </xsl:template>
    </xsl:stylesheet>
    Message was edited by: HoneoyeFalls
    Sample XML file exported from IDD
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Story><Table xmlns:aid="http://ns.adobe.com/AdobeInDesign/4.0/" xmlns:aid5="http://ns.adobe.com/AdobeInDesign/5.0/" aid:table="table" aid:trows="2" aid:tcols="2"><colHead aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="44">1 colHead</colHead><colHead aid:table="cell" aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="56">2 colHead</colHead><tabletext aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="44">1 tabletext</tabletext><tabletext aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="56">2 tabletext</tabletext><tabletext aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="44">row 2 1 tabletext</tabletext><tabletext aid:table="cell" aid:crows="1" aid:ccols="1" aid:ccolwidth="56">row 2 2 tabletext</tabletext></Table>
    <table><tr><th>normal HTML table heading</th></tr>
    <tr><td>normal HTML table<br/>cell text</td></tr></table></Story>

    You can use RECORD type declaration:
    SQL> declare
      2   type rec_type is record (
      3    ename emp.ename%type,
      4    sal emp.sal%type
      5   );
      6   type rc is ref cursor return rec_type;
      7   rc1 rc;
      8   rec1 rec_type;
      9  begin
    10   open rc1 for select ename, sal from emp;
    11   loop
    12    fetch rc1 into rec1;
    13    exit when rc1%notfound;
    14    dbms_output.put_line(rec1.ename || ' ' || rec1.sal);
    15   end loop;
    16   close rc1;
    17  end;
    18  /
    SMITH 800
    ALLEN 1600
    WARD 1250
    JONES 2975
    MARTIN 1250
    BLAKE 2850
    CLARK 2450
    SCOTT 3000
    KING 5000
    TURNER 1500
    ADAMS 1100
    JAMES 950
    FORD 3000
    MILLER 1300or use, for example, VIEW to declare rowtype:
    SQL> create view dummy_view as select ename, sal from emp;
    View created.
    SQL> declare
      2   type rc is ref cursor return dummy_view%rowtype;
      3   rc1 rc;
      4   rec1 dummy_view%rowtype;
      5  begin
      6   open rc1 for select ename, sal from emp;
      7   loop
      8    fetch rc1 into rec1;
      9    exit when rc1%notfound;
    10    dbms_output.put_line(rec1.ename || ' ' || rec1.sal);
    11   end loop;
    12   close rc1;
    13  end;
    14  /
    SMITH 800
    ALLEN 1600
    WARD 1250
    JONES 2975
    MARTIN 1250
    BLAKE 2850
    CLARK 2450
    SCOTT 3000
    KING 5000
    TURNER 1500
    ADAMS 1100
    JAMES 950
    FORD 3000
    MILLER 1300 Rgds.

  • Enable Commenting and Measuring without a mouse

    I work for a large nonprofit with no tech department. (I'm on a mac OS 10.6, others have OS 10.7) We've just upgraded 3 of us to Acrobat Pro X (from Acrobat Pro 7).
    I need to be able to do the following to many many files every day -  with fewer than 2 mouseclicks.
    File > Save As > Reader Extended PDF > Enable Commenting and Measuring ... [confirm over wright in same folder on the shared (windows) server] ... [close document]
    Best case scenario: Adobe makes this an export option in inDesign, where it belongs.
    Next best: a "droplet" app that can enable many PDFs  at once.
    Next best: a working applescript that I can invoke from my script menu
    Next best: <sigh> an adobe Action that I can script in Acrobat
    Next best: working javascript code that someone can help me figure out how to deploy for 3 users...

    The scrolling option is now in System Preferences > Universal Access > mouse & trackpad tab > mouse options.. button > check scrolling.

  • Enable Commenting & Measuring in not working

    I am having pdf Dynamic XML Form(Interactive form). and trying to Enable Reader Extended Features.
    I just go through the File --> Save As --> Reader Extended Features --> Enable Commenting & Measuring
    But Option is not working. It is Clickable but nothting it prompts.
    The same option is working in Old version of same form which is also Dynamic Xml Form(Interactive form).
    Please Help.
    Thanks in advance !!

    Santosh,
              Really thanks for your consideration.
              Yes , i found the reason, the difference only is Old version is static pdf form and i also found that a no. of event are not working in this due to static functionality, which are passing very fine in Dynamic form.
    But question is still there.Is Dynamic form(Xfa based) does not show Commenting & Measuring  functionality???

  • XML to InDesign, multiple versions of the same document

    Hi everyone,
    I have a small project that I need help with.
    I am working on an online survey for a client of mine; which consist of 10 odd pages of questions as well as free text entry on some of the questions. Some of the questions requires number input which then converted into charts (bar graphs etc.) Survey is done as a web app (using .NET and C# and MySQL) and resulting data converted into XML format in order to generate a report based on the answers that the members provide.
    Currently XML data is imported into MSWord and report is generated as .docx file.
    Client is not happy with the presentation of the word so I suggested that we can use InDesign to have a better look/feel of the report, using the same XML structure.
    There are 1000+ members that need to take this survey, which means that report has to be generated for each client individually (different answers, total page numbers, branding and so on.)
    I understand the basics of generating a book from XML to InDesign but I can't figure out how can I apply this workflow into producing 1000+ different copies.
    Do I need to have 1000+ InDesign documents with SAME XML structure but DIFFERENT branding (different heading colours etc.) or is there a way to generate the reports with using a single InDesign template, supplying each member's survey results as a separate XML file and generate the report.
    It would be great to know if the process can be automated such as :
    - Saving all the XML files (Survey answers) in a folder
    - Save all graphs for each client in a separate folder (e.g. /client_name/graphs)
    - Open InDesign and select the XML source file <- This is where I stuck. I can only imagine doing this work for every single member
    - Generate reports (saving as PDF documents)
    I'll be happy to answer if you have any questions or need clarification.
    Any suggestions welcome
    Thanks

    You probably want to look at InDesign's Data Merge feature.
    Unfortunately it won't accept XML directly, so you'll have to convert your XML to CSV or TSV. But that's pretty easy to do.

  • File Save As Other Reader Extended PDF Enable Commenting & Measuring GRAYED OUT

    I have an PDF form created in Adobe LiveCycle Designer ES 10.0.
    When I open in Reader, All the "Sign" options are grayed out.
    Under "Properties" Signing is allowed but Commenting is not.
    From all I have seen, I hope that allowing Commenting will allow me to use the sign features.
    The only solution I'm finding on the internet is below:
    File > Save As Other > Reader Extended PDF > Enable Commenting & Measuring
    It is grayed out in my (latest version of) Acrobat pro.
    **Is there a way to make this option available?**
    **Will this even solve my problem?**
    **Is it possible that it is impossible to use these features on this document?**
    At this point, I've spent about two and a half hours on this issue and haven't been able to find a solution. Very frustrated.
    Thanks.

    Thanks. I'm not an IT person and needed that lead.
    In the end, I just printed to Adobe PDF and then was able to use the commenting options (once I had flattened it). For those who might come across this - this is one of the only ways to flatten a XFA PDF.

  • Acrobat 9 Pro Extended: Enable commenting in Save As-ed PDFs by default

    For Acrobat 9 Pro Extended:
    When using Save As to save a PDF, is it possible to have Commenting and Analysis enabled for that saved PDF by default?
    What I currently must do: Open the PDF, choose Comments > Enable for Commenting and Analysis in Adobe Reader, at which point Acrobat 9 Pro Extended prompts me to save the file.
    What I would like to do: Have Save As automatically enable commenting & analysis by default.
    I can't find any controls for that, so suspect it's a manual process each time...(?)
    Note, too, that this question was asked for Acrobat 8 Pro but went unanswered, which further leads me to believe enabling comments may well be a one-by-each process. Sigh...
    http://www.adobeforums.com/webx/.59b4ef98
    Cheers & thanks,
    Riley

    > When using Save As to save a PDF, is it possible to have Commenting and Analysis enabled for that saved PDF by default?
    No.

  • Acrobat 9 Pro Extended: Can one enable commenting by default?

    For Acrobat 9 Pro Extended:
    When using Save As to save a PDF, is it possible to have
    Commenting and Analysis enabled for that saved PDF by
    default?
    What I currently must do: Open the PDF, choose
    Comments >
    Enable for Commenting and Analysis in Adobe Reader, at which
    point Acrobat 9 Pro Extended prompts me to save the file.
    What I would like to do: Have
    Save As automatically enable commenting & analysis by
    default.
    I can't find any controls for that, so suspect it's a manual
    process each time...(?)

    Thank you for your post. These forums are specific to the
    Acrobat.com website and its set of hosted services, and do not
    cover the Acrobat family of desktop products. Please visit the
    following forums for any questions related to the Acrobat family of
    desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

  • How do I enable commenting on a dynamic fillable pdf?

    This question applies to both Acrobat 9 and X. It seems like it's either one or the other - if I enable commenting, it asks that I use the File > Print to print as a flat non-fillable PDF, but if I want to keep the form fillable, then I cannot enable commenting.
    In Acrobat 9, "Advanced > Extend Features" only enables form filling, not commenting. "Comments > Enable Commenting" doesn't seem to do anything other than pop up that window to tell me to print the PDF. I believe the same limitations apply to Acrobat X, in "File > Save As > Reader Extended PDF".
    Is there a way to make my form fillable, but allow the commenting toolbar (sticky notes, highlighting, etc) in Adobe Reader?

    The only way to enable BOTH sets of options is via our LiveCycle Reader Extensions Server product.

  • Cannot Enable Commenting/Annotations Tools

    I want to enable the use of Commenting/Annotations tools in Reader by setting up a shared review via Acrobat 10 Standard.  From what I've read it seems that I should be able to do this by simply using the Shared Review wizard, however the PDF it generates only has the Sticky and Highlighter tools available in Reader.
    I've read many different discussions on this issue, which tend to say things like "well you have to enable commenting through Acrobat"... and I get that, but my quesiton is how to do so.  I've also seen step by step instructions such as "go to 'File > Save As > Reader Extended PDF > Enable Commenting and Mesuring'..." which I've attempted but I only have 'F > SA > REPDF > Enable Forms Fill-In & Save in Reader' as an option.
    Perhaps this has something to do with Acrobat 10 Standard (i.e. not Pro)?
    So please contribute an answer if you know the solution to my problem
    Thank You!

    In Adobe v.7.1.0, Standard Version, the Comments menu does not have the
    "Enable for Commenting" option.
    Please see attached.
    Is it only in Adobe Acrobat, v.8.0, that the Enable for Commenting
    option exists to allow your reviewers who only have Reader to add
    comments to the PDF document that you distribute?
    Best regards,
    Susan Steen

  • Is enable commenting grayed out in trial version?

    I have a trial version of Acrobat X Pro, and
    Save as > Reader Extended PDF > Enable Commenting and Measuring
    is grayed out and not functional.
    The trial says that it's a fully-functional version, so it's possibly something else. Any ideas?

    Thanks for the idea, it looks like this particular PDF is secured with a password, so that must be why. If I open another PDF I can get the enable comments menu item to work.
    I wonder if there's an easy way to put the content of the PDF into a non-protected PDF?
    I seem to have other "save as" options, maybe a round-trip to RTF or HTML, then convert to PDF?

  • Enable commenting on PDF produced from RSTXPDFT4

    Hi experts,
    In our business , we are using program RSTXPDFT4 to convert an ABAP spool list into PDF.  Now, there is a request for the ability to put comments onto the PDF file (see attached "Insert comments.jpg"). We found that we are unable to do so with our current version of  Adobe Reader 9.
    However, a user with Adobe Acrobat Pro will be able to save the PDF with "Reader Extended PDF -> Enable Commenting and Measuring" (see attached "Adobe Acrobat Pro.jpg").  When this is done, we can then open the PDF file using Acrobat Reader 9 and add in comments.
    Here is the question - is there a way to convert a spool into PDF with the "Reader Extended PDF" properties from SAP, so that it is immediately ready for commenting?
    Regards,
    Sui

    I don't think so.
    Adobe Acrobat may have to save the pdf in higher version whose specification has the said feature.
    Most pdf writers create pdf with version 1.4, which is lower than latest format, but good enough.

  • Enable Commenting & Measuring in Acrobat 10 and 11

    What does the "measuring" refer to in File | Save As Other | Reader Extended PDF | Enable Commenting & Measuring in Acrobat 11? (BTW, it was Comments | Enable for Commenting
    and Analysis in Adobe Reader in Acrobat 9. The path was similar to 11 in version 10, but not identical.) I add this for others who are trying to find what new path to follow in 11. I had to go to Google to find it, and that was for 10. Thanks adobe.com support.

    Hi Regina Engelken,
    If you are specifically looking for information about measuring tool, Please refer this Link- Tips & Techniques: Measuring in Adobe Acrobat
    I have also found a video Tutorial that depicts the usage of measuring tool :
    The navigation path you mentioned ( File | Save As Other | Reader Extended PDF | Enable Commenting & Measuring in Acrobat 11) enables the Commenting and Measuring features for Users who are using Adobe Reader instead of Acrobat.
    I hope this answers your question. Please let me know if you have any other query or need any assistance.
    Regards,
    Rahul

  • Enabling Commenting Tools in embedded mode

    We have own plug-in which provides collaboration capabilities for reviewing documents introducing custom annotations with categorization based on standard Acrobat annotation feature. However Commenting tool is not available in post 6 Acrobat versions when Acrobat runs in embedded mode. I suspect that Adobe suppressed the feature to avoid competition from similar to our solutions. Adobe also discontinued earlier Acrobat versions so our big customers have quite serious problem now, because they can't buy newer Acrobat . . So I am interested if somebody from Adobe senior level engineering or sales reads the forum and can contact me to resolve the issue. Again if some developers know how to enable Commenting tool from plug-in when Acrobat is running embedded, then please share your experience.

    I'm not certain drog is going to get what he want here. It sounds like he doesn't want to write a plugin to create Adobe annotations, but rather his plugin is capturing annotation information when the Adobe tools place and/or modify annotations.
    That's not going to work in a browser unless Adobe changes what's allowed in the browser. If I'm not mistaken, Adobe tools will not create or modify annotations when the PDF is viewed in a browser. The user can always save the file to disk and open it directly with Acrobat (or Reader if it's comment enabled) to get access to the Adobe commenting tools.
    Perhaps that's what drog should do - have his plugin give instructions to the user to save to disk and open directly with Acrobat/Reader. It's fairly simple to recognize when the PDF is viewed in a browser. If this approach is not acceptable to his workflow, then drog is going to have to re-invent the wheel and write a custom annotation handler to add/modify annotations.
    Hope this helps

  • How to enable commenting into pdf files using java?

    Hi All,
    Is there any way available to enable comments into pdf files through java. I have a Adobe Reader 9 and also I want put some comments into pdf file, but the reader is not allowed to place a comment into pdf file before enabling the Comments into pdf. After enabling the comments in pdf file then only we can place the comments and we can the pdf file with comments.
    Is there any way available to enable comments into pdf file to view acrobat reader.
    Thanks in advance.

    The end user who uses the web application has Acrobat installed in their mahcine needs it only for the purpose of enabling comments in pdf. If this task of enabling comments in pdf is done through my application there is no need for acrobat in such user's machine which was requested as a cost cuttnig measure.
    For this purpose, i need to know about how to enable comments in pdf through java api.
    I have used itext java api for other pdf related manipulation in java. But it does not have feature as per the requirement posted above. Can any body suggest relevant java api to achieve the task requested?
    Tahnks in Advance.

Maybe you are looking for

  • DVD drive region semi-free?

    I've been having a small issue with my iMac and DVDs. First off, I'm in Region 4, which is what my mac is set to. Secondly, I have a lot of discs from other regions. Now, my discs that are region one will not play in the DVD player (as expected), and

  • Screensaver not working since upgrading to Mavericks

    As the title says my screensavers doesn't 'kick in' since upgrading to Mavericks at the weekend. I've tried reselecting my chosen photo folder but it still doesn't work. All it does is stay on the desktop screen. Has anyone else had this and know how

  • Downloading ALV Grid (using objects) output to Excel

    Hi all, I'm using objects for ALV Grid. I have few other fields (few are above and few are below the custom control) on screen other than custom control. I want to download the entire screen to excel (including other fields). But using Export option

  • [JS CS3] ScriptUI button wants to be clicked twice

    Hi I created a sample scriptUI dlg with three buttons: res = ]"dialog { \ ]s: StaticText { text:'Chosissez une période:' }\ ]]period: DropDownList { alignment:'center' }, \ ]]s: StaticText { text:'Chosissez un fichier:' }\ ]]files: DropDownList { ali

  • Information Broadcasting direct email delivery of CSV files?

    Hello, Is there any way to configure Information Broadcasting in BW 3.5/Netweaver 04 such that email delivery of CSV files is possible?  I see that the pre-calculation server will generate workbooks.  Though, we really need delivery direct to CSV. Al