Remove the comment time stamp in a PDF document

Does anyone know what's the best way to remove the comment time stamp from a document?
thanks

Do you mean that you want to remove the timestamp of a particular comment? If so, there are two timestamps associated with a comment, the creation date and the modified date. The modified date is what's shown in the comments list in Acrobat/Reader and can be altered by a script, but the creation date will still be present though unseen and unmodifiable directly with a script. It's possible to export the comments to a data file (FDF/XFDF), edit the file to remove/replace any timestamp info, and re-import the comments into a copy of the file that doesn't have comments. So the best approach really depends on what it is you're trying to accomplish.

Similar Messages

  • Remove the time stamp in a PDF document

    So.... I'm hoping that there's a way to remove the time stamp from a PDF document I'm working on. I can't find it in preferences and a search has been less than fruitful. Any ideas??  Thanks!

    If you use the redaction tool to redact white space and then apply the redaction, it will give you the option to remove all hidden information. That should do what you wish.

  • How do you remove the date/time stamp from a photo before printing?

    I have one group of photos in an event that have the date and time stamp on them.  I don't know how to remove the date/time stamp before printing. 

    If you have your camera set to imprint the date/time on the photo you can not "remove it - it is a part of the photo - depending on the surounding photo you might be able to retouch it out
    LN

  • How do I to get the date/time stamp back on my texts in ioS7?

    I've looked and looked to find an option and I can't seem to locate one.  Does anyone know how to put the date/time stamp back...?  It does appear in, but not consistently.

    Swipe right to left and they will appear as you need them.

  • How do you vary the Date/Time stamp format in File Adapters

    In the receiver channel of the File Adapter where you specify the 'File Name Scheme', you do have the option of specifying a 'File Construction Mode' of 'Add Time Stamp'.  How can you specify a different Date/Time stamp format ( eg MM/DD/YY vs YYYYMMDD vs MMDDYY, etc. ) without changing the Date/Time stamp for the entire SAP system?  Also, can you control where the Date/Time stamp appears in the filename?

    Hi,
    There are many threads discussing the same issue. Go thro the following:
    Dynamic file name (Date) in Receiver File Adapter
    Receiver File Adapter - TimeStamp
    Bhavesh's reply in above thread:
    You can use Adapter Specific Identifiers and then change the file name in the mapping. Append the tiem stamp in the format that you want and so on.
    Just use this code in an UDF,
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String SourceFileName = conf.get(key);
    java.text.SimpleDateFormat dateformat = new java.text.SimpleDateFormat( "yyyyMMdd" );
    dateformat.format( new java.util.Date() );
    String newfilename=SourceFileName+dateformat;
    // change to new file name
    conf.put(key, newfilename);
    return "";
    Regards,
    P.Venkat

  • Adding the date/time stamp to videos already created

    We have someone using Elemets 8
    They need to add in the date/time stamp to video's that are already created.
    The camcorder we have does record this information but doesn't allow that information to be put onto the screen its a Canon HD HF200
    We were told by Adobe support we can do this but they wanted $39 plus $39 an hour.
    Anyone out there able to tell me how we can get this done for free?

      Try the Premier Elements forum for video questions. You will get better advice over there. Good luck.
    http://forums.adobe.com/community/premiere_elements

  • I want to remove the comments section

    hi this is my site http://demo402.businesscatalyst.com/news/company-announces-record-profits
    i want to remove the comments section . how i will do that

    If you're not familiar with HTML make sure you create a backup of the html in a text editor before editing, that way you can replace it later if you need to.
    What you want to do is go into the
    Site settings > Module templates > News Layouts > Detail layout.
    Click the html tab bottom of the editing window.
    Remove  the comment form div code which should look like this: starting with <div class="comment-form"> and ending with </div>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform2343" onsubmit="return checkWholeForm2343(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item">   <label>Was this helpful?</label><br />
        No   <input type="radio" name="Rating" value="1" />   <input type="radio" name="Rating" value="2" />   <input type="radio" name="Rating" checked="checked" value="3" />   <input type="radio" name="Rating" value="4" />   <input type="radio" name="Rating" value="5" />   Very   </div>
        <div class="item">   <label>Name (optional)</label><br />
        <input class="cat_textbox_small" type="text" name="FullName" maxlength="255" />   </div>
        <div class="item">   <label>Website (optional)</label><br />
        <input maxlength="255" name="website" class="cat_textbox_small" />   </div>
        <div class="item">   <label>Email Address (optional)</label><br />
        <input class="cat_textbox_small" type="text" name="EmailAddress" maxlength="255" />   </div>
        <div class="item">   <label>Enter Word Verification in box below</label><br />
        {module_captchav2}   </div>
        <div class="item">   <label>Comment (optional)</label><br />
        <textarea class="cat_listbox_small" name="Feedback"></textarea>   </div>
        <div class="item">   <input class="cat_button" type="submit" value="Submit" />   </div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">   //<![CDATA[
       function checkWholeForm(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += isEmpty(theForm.CaptchaV2.value, "Enter Word Verification in box below");if (why != ""){alert(why);return false;}return true;}  
    //]]>   </script>
    </form>
    </div>
    Then save.
    If you delete the wrong code, restore from the backup copy.

  • Get the created time stamp of a file...

    Hi Guys,
    I am trying to get the created time stamp of a text file from oracle... How is this possible? I tried using UTL_FILE but didnt succeed so....
    Thanks...
    Edited by: Napster on Oct 21, 2010 12:43 AM

    You may try something like this.
    create or replace and compile java source named filehandler as
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    import java.sql.Timestamp;
    public class FileHandler
      private static int SUCCESS = 1;
      private static  int FAILURE = 0;
    public static Timestamp lastModified (String path) {
        File myFile = new File (path);
        return new Timestamp(myFile.lastModified());
      }Then the wrapper
    CREATE OR REPLACE FUNCTION lastModified (p_path  IN  VARCHAR2) RETURN DATE
    AS LANGUAGE JAVA
    NAME 'FileHandler.lastModified (java.lang.String) return java.sql.Timestamp';PS: Not tested.

  • How do I remove the target-like images from my pdf?

    How do I remove the target-like images from my pdf? There are four of them, one in the very top center, very bottom center, far left center, and far right center.

    Are you saying they haven't always been there? If they have been, they're likely registration marks.

  • Enabling the Local time stamp on Sales Order, Delivery, invoice & PO

    Hi SAP experts,
    I need the valuable inputs for the following requirement- the user ( India based)want to see the local time stamp on transactions VA01(Sales Order), VL01N(Delivery) and VF01(Sales Invoice), ME21N(PO). The system is currently fetching the Malaysian time on these.(invoice and delivery).
    A small info about the issue: As India is 2.5 hrs behind Malaysian time so at 9:30 pm India time system date changes to the next day for us and any invoice done after 9:30 pm is showing next day's date. Also the time reflected on the Invoice is Malysian time which should be actually the local time. As per user, it is a non compliance on regulatory front.
    To simulate the issue we have created an invoice on 3rd Jan at 4:01PM Indian Std time but the time reflected on the invoice is 18:31 which is MY time.
    Also provide help in where to see the time settings for these sales documents?
    I am new to the SAP, All the valuable suggestions are highly appreciated.

    Dear All,
    With the help of security team, we tried to change the Personal time Zone ( of the user) maintained in SU01-Defaults tab to INDIA , but did not get the expected results. THE SYSTEM TIME ZONE JUST MAINTAINED BELOW PERSONAL FIELD IS SHOWING UTC+8.
    After the change , the invoice created at India time is reflecting +2.5 hrs ahead time.
    Pls Suggest , how to acheive this. Any example ecenario can help a lot.
    Thanks a lot in advance for the support.

  • How do you permanently disable Tool Pane from showing up every time you open a pdf document in Adobe Reader DC 2015?

    Just like 9.9/10 people out here in the real world, I use Adobe Reader to read pdf files and never (ever) use the Tool Pane for anything.
    How do I permanently disable it from showing up, instead of having to close it *each & every time* I open a pdf document? The majority of people don't want thins thing covering up the page they are trying to read.

    Okay, seems I've stumbled upon an ugly workaround but it works for me. I'm using Windows 8.1. Go to the install directory, i.e." C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroApp\ENU". Create a new subfolder (I used "Disabled"). Move 3 files from the "ENU" folder into the new "Disabled" folder: AppCenter_R.aapp & Home.aapp & Viewer.aapp. Open a PDF and no more Tool Pane! I originally moved just the "Viewer" file but if you clicked on "Home" or "Tools" on the toolbar you couldn't go back to the "Document." Moving all 3 files takes care of that issue. Like a lot of people I don't and won't ever use any of the tools. I just want a reader. Let me know if this works for you.

  • How can I change the page size of a scanned PDF document?

    How can I change the page size of a scanned PDF document?
    I scanned a 50-page document with an HP 5610xi All-In-One using the software that comes with it: HP Scan Pro. Though the physical document has standard 8.5" x 11" pages, the PDF resulting from scanning has page size set to 35.42 × 48.67 inches (according to Preview's "Tools > Inspector". I want to resize the pages to 8.5" x 11". Shouldn't Preview be able to do that with "Tools > Adjust Size..."? When I try, the menu option is grey so I can't select it.
    I'm using Preview Version 4.2.

    Thanks for the insight; that explains why it's the wrong size. I selected 300dpi scanning (which is the default, actually), but HP Scan Pro evidently created a PDF with 72dpi indicated. I want it fixed because I want to distribute the file to other people and have them able to print or display it without problems.
    I still don't know why Preview won't let me change it, but your question about whether I wanted to print it did lead me to find a workaround: "File > Print" and "Save as PDF..." saved it with the correct page size.

  • Automate the justification of paragraphs in a pdf document

    How can I automate the justification of paragraphs in a pdf document?
    For example: I have a pdf document as output from a reporting application, containing many left-justified paragraphs.
    I would like all of these paragraphs to be fully justified.
    I can perform the task manually using the new Content Editing tools in Adobe Acrobat XI, but I need to automate the task.
    Any ideas?

    Sorry, no. 'Actions' in Acrobat are collections of tool presets (things chosen from a menu or set on a dialog box) - they cannot record mouse or keystrokes and cannot select page content.
    Acrobat's ETI tool is intended for minor corrections; PDFs are simply not structured to allow large-scale reformatting. If the original application can't deliver, you may find it simpler to export the PDF into an editable format (Word DOCX, etc) and make the changes there.

  • How can my laptop access the downloaded files like mp3 and pdf documents which are in my iphone 4G?

    how can my laptop access the downloaded files like mp3 and pdf documents which are in my iphone?

    Yes you will need to NAT at some point to go from private to public address space. Here is a basic configuration if you are interested:
    interface F8
    ip nat inside
    interface G0
    ip nat outside
    ip access-list standard NAT
     permit 192.168.11.0 0.0.0.255
    ip nat inside source list NAT interface G0 overload

  • HT5636 I was typing in a word for Mac document and I hit the apple key and the numeral 8 at the same time now all of my documents have these strange symbols please help

    I was typing in a word for Mac document and I hit the apple key and the numeral 8 at the same time now all of my documents have these strange symbols please help

    Simply type command 8 again. That toggles the "show paragraphs" function.

Maybe you are looking for

  • Importing apple loops -why do some in a folder work and some dont?

    im trying to drag and drop all my sample cds i have on my external drives into the apple loop browser in logic, some are folders in folders in folders as most cds are..why is it that when i drag the whole sample cd folder and drag it in that quite of

  • Create border around Grid/GridItem

    Hi, I am stuck with a problem and no idea on how to proceed on this. I have created a Grid and want to draw border around it so its appearance is like table. The borders are just not appearing. Can someone provide any direction what I may be missing.

  • Call a ABAP FM using 'TYPE ANY'???

    Hi Pros, I need to call a FM in ABAP that has tables and attributes of type ANY or ANY TABLE. I do not care about how, but I need to find a way to call such a FM from a Web Dynpro Aplication and transport these "any" types to java... can anyone think

  • Max heap memory values

    Dear all, In the config tool of a Java 6.40 system, for a server process I see the Max Heap size under Tab "General" and the Max Heap size under Tab "Bootstrap". What is the difference of these two values? If you can send me a link with documentation

  • Interactive report Several series within same chart?

    Hi I'm about to develop a Chart-report showing several series within same chart ex serie1: Product A , amounts, dates serie2: Product B , amounts, dates etc. It would be nice to use IntractiveReports in this case but is it possible? Thanks for any ti