Prevent Insertion of Author Name in Save as PDF

The standard Print dialogue box features a button/menu "PDF" with a "Save as PDF" choice. By default, the user account's full name is inserted in the Author field when using this option. (I shall not comment on Apple's wisdom -- or lack thereof -- in setting such a default.)
Others have asked before how to prevent this behaviour, eg
Save as PDF
How to Print to PDF anonymously
Print - Save as PDF
and various solutions have been suggested, some more ingenious than others. However, they do not actually answer the question.
I am aware I can use various methods to remove the metadata afterwards, or use an Automator action, or simply delete it before the PDF file is created, but any of them means more, rather than less, work. So my question is simply this:
How can I modify the default and prevent the OS from inserting the full name in the Author field in the first place?
Thanks.

thanks for the reply:
don't know if this some sort of a display redraw issue:
but if I just hit enter I get the file saved as untitled.wav (which is floating in the middle of the screen not in the correct location)
and the file ends up in "My Music Folder" (which I never use, but can't change folders either)
-good grief I hate M$ for their My . . . crap folders
the system is using similar Intel-GMA integrated graphics as my main workstation
the only difference is processors and the chipset is one generation back
my main workstation has 965ry and the backup has 945g

Similar Messages

  • When I click SAVE PDF i need to get default dynamic name to save the PDF document.

    Hi All,
    When I click SAVE PDF option I need to get default dynamic name. In my case lets say Sales Order Number.pdf.
    Thanks,
    SP.

    Hi,
    I have created SAP Abobe Form for Patient Order.
    So when we execute we will see output as a PDF. If I want to save the PDF From, and click on the SAVE button, by default it comes up with my SAP FORM name, which I don’t want.
    What I want is when I click SAVE button by default it should come up with the Patient Number on the PDF Form, so that i can directely save without changing the name.
    For Example if I view the 101010 Patient Number then i should save the pdf from by 101010.pdf, same way if i view 202020 Patient number then i should save the pdf form by 202020.pdf.
    Please let us know is this possible.
    Thanks,
    SP

  • Author name in the header

    How is possible to insert the Author name of sheet on header page??
    bye
    gianlu

    Hi JeanCruz!
    Were you able to sort your problem out?
    Based on what you have written, what I understand is:
    1) Your clients have access to various business areas
    2) They are creating their own reports either using Discoverer Desktop or Plus.
    3) They want their name to appear on the header as a report author.
    The solution I had suggested was let them select 'user' from your quary 'select user from dual' and place it as a page item in the report. Thus, when they select page items to be displayed in the header, their name will automatically apear as an author.
    However, there is something that I had not thought of....if some other user (with whom the author of tha report has shared the report) logs in and checks tha same report...then, his/her name will appear instead of the author.
    Answer to your last question: I'm from India, but, working in Mauritius.
    Regards,
    Aparna

  • PDF File - Author Name and Title

    Product: Adobe Acrobat Standard Version 8.1.2
    Product: Microsoft Access 2003 Windows XP Professional
    Problem: When creating PDF documents using Microsoft Access forms as the source, the PDF document is created with a title and author other than what is desired. Thus I have to manually enter the desired information into the PDF document.
    Question 1: Where is the default information (author and title) being sourced from?
    Question 2: How do I change this default information.

    You can edit the Name in Acrobat/Reader's Identity object, but login name is pass from the OS. But changing the Name in the identity object will not change the "Author" name of the PDF. You could try setting the Author/User name in FrameMaker's properties. If that does not work, you can create an Acrobat menu item, tool bar button, or batch process to change the "Author" name value in the PDF's by using JavaScript.

  • Save as PDF - Change Author Name?

    In any application when you go to Print, Save as PDF is there any way to change the default author name it already has written there?

    Unfortunately, that's not the answer that anyone is looking for. It's not changing the author name that is desired, but changing the author name that comes up by default when you save as PDF so that you don't have to select the author field and change it from your username. The goal is to remove steps, not to add steps.

  • 4.0 Webi Report Author name change

    Hi Gurus,
    I want to change the Intial Report author name to new report Developer name in SAP BO 4.0. I have tried with Save as option but this couldn't help me.
    Can you please let me know, how we can change the Webi Report author name ?
    Best Regards,
    Sai

    Hi Mahi,
    Thank you for your kind information.
    I’m not sure how I can implement this Java script since I have never worked on the JAVA sdk.
    Could you please let me know step by step how I can implement this ?
    Best Regards,
    Saidi Reddy

  • Create Annotations with 'author' name tool property

    Philip Cord has kindly sent me this code that allows to create annotations with the "Author" tool property (older versions than CS3 couldn't get this on script listener - only on the CS3 script listener).
    Hope it helps anyone like me that can't have access anymore to CS3
    var colour = new SolidColor();
    colour.rgb.hexValue = 'ff00ff';
    selectNote(0);
    colourNote(colour);
    addAuthorToNote("Author Name");
    function colourNote(colour) {
    var Saturation = colour.hsb.saturation;
    var Brightness = colour.hsb.brightness;
    var Hue =colour.hsb.hue;
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putEnumerated( stringIDToTypeID('annotation'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
    desc.putReference( charIDToTypeID('null'), ref );
    var desc2 = new ActionDescriptor();
    var desc3 = new ActionDescriptor();
    desc3.putUnitDouble( charIDToTypeID('H   '), charIDToTypeID('#Ang'), Hue );
    desc3.putDouble( charIDToTypeID('Strt'), Saturation );
    desc3.putDouble( charIDToTypeID('Brgh'), Brightness);
    desc2.putObject( charIDToTypeID('Clr '), charIDToTypeID('HSBC'), desc3 );
    desc.putObject( charIDToTypeID('T   '), stringIDToTypeID('annotation'), desc2 );
    executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    function selectNote(number) {
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putIndex( stringIDToTypeID('annotation'), number );
    desc.putReference( charIDToTypeID('null'), ref );
    try{
    executeAction( charIDToTypeID('Shw '), desc, DialogModes.NO );
    }catch(e){}
    function addAuthorToNote(Author) {
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putEnumerated( stringIDToTypeID('annotation'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
    desc.putReference( charIDToTypeID('null'), ref );
    var desc2 = new ActionDescriptor();
    desc2.putString( charIDToTypeID('Athr'),  Author);
    desc.putObject( charIDToTypeID('T   '), stringIDToTypeID('annotation'), desc2 );
    executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    function makeAnnotation(X,Y,Width,Height) {
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putClass( stringIDToTypeID('annotation') );
    desc.putReference( charIDToTypeID('null'), ref );
    var desc2 = new ActionDescriptor();
    var desc3 = new ActionDescriptor();
    desc3.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Pxl'), X );
    desc3.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Pxl'), Y );
    desc2.putObject( charIDToTypeID('Lctn'), charIDToTypeID('Pnt '), desc3 );
    var desc4 = new ActionDescriptor();
    desc4.putUnitDouble( charIDToTypeID('Hrzn'), charIDToTypeID('#Pxl'), Width );
    desc4.putUnitDouble( charIDToTypeID('Vrtc'), charIDToTypeID('#Pxl'), Height );
    desc2.putObject( charIDToTypeID('Sz  '), charIDToTypeID('Ofst'), desc4 );
    desc2.putEnumerated( stringIDToTypeID('annotType'), stringIDToTypeID('annotType'), stringIDToTypeID('annotText') );
    desc.putObject( charIDToTypeID('Usng'), stringIDToTypeID('annotation'), desc2 );
    executeAction( charIDToTypeID('Mk  '), desc, DialogModes.NO );

    This is a bit more robust (it won't fall over if you have no images open or can't find the corresponding image) I've made it so if you have the thumbnail image open it will find the mannequin image and visa versa. Save the script to your PS scripts directory. In photoshop record an action that uses the script. Stop recording! Then you can run the script as an action.
    app.preferences.rulerUnits = Units.PIXELS;
    if (documents.length == 0)
        alert ("No documents open, dude!")
    else
        var dir1 = "Mannequin";
        var dir2 = "Thumbnails";
        // call the current document
        var tempDoc = app.activeDocument;
        // get the info out of the source doc
        var fileName = tempDoc.name;
        var filePath = tempDoc.path.toString();
        var fileNameAndPath = filePath + '/' + fileName;
        var tempDir = filePath.substring(filePath.lastIndexOf("/") +1, filePath.length);
        var goCode = false;
        var docName = fileName.substring(0,fileName.length -4);
        if (tempDir == dir1)
            var otherImagePath = filePath.substring(0, filePath.lastIndexOf(dir1));
            var tempFile  = decodeURI(otherImagePath + "/" + dir2 + "/" + fileName);
            goCode = true;
        if (tempDir == dir2)
            var otherImagePath = filePath.substring(0, filePath.lastIndexOf(dir2));
            var tempFile  = decodeURI(otherImagePath + "/" + dir1 + "/" + fileName);
            goCode = true;
        if (tempDir != dir1 && tempDir != dir2)
            alert("Cannot find matching image.")
            goCode = false;
        if (goCode)
            //open the other image
            var fileRef = new File(tempFile)
            if (fileRef.exists)
                app.open(fileRef);
            else
                alert("Matching file does not exist.")
    }// end doc check
    Hope this helps.

  • How to insert the file name to column

    When user upload the file, in order to avoid the double file name conflict, so I need to  change the file name to something else, but I still need save the former file name to some column to download the file with correct file name, I know how to rename and upload file, but I don't know how to catch the file name and save it to some column when using addt insert transaction?

    Hi,
    As I said earlier, you have to maintain the list of filename's "itemdescr" in different temp file and load it an and when required table instead of checking for round robin functionality. If you are looking forward that oracle sqlldr can able to access the filename as one of the parameter then - it might not possible AFAIK.
    else perform the direct insert on the table from sqlclient.
    - Pavan Kumar N

  • Author Name Not Updated After XML Fix

    I've searched high and low for a solution before posting this thread.
    I'm on my 9th episode of my podcast. I've been on itunes since the first episode and my feed is through feedburner. I've always wondered why the Author name in the Itunes store is "Unknown" and wanted to get it fixed. A couple weeks ago I figured out how to update the XML information in feedburner and updated the Author name and pinged feedburner. Since then, Author name is STILL listed as Unknown.
    Can anyone tell me what else I have to do for this to be updated?? It's just baffling to me that itunes is updating fine with my new episodes when I ping but is not picking up the Author info.
    Please help!
    By the way, the podcast is called the Decibel Geek podcast.
    Thanks in advance!

    Please when you have a query always post the feed URL to save detective work: for the record yours is at
    http://dbgeekshow.libsyn.com/rss
    The relevant tag in the feed does not contain a name;
    <itunes:author><![CDATA[]]></itunes:author>
    Feedburner is not involved in this - iTunes is using the Libsyn feed and it's there that you need to make the amendment.

  • My iPad keeps asking me to insert my user name and apple password every 10 mins or so. Anyone know why and what I can do to stop this? Thank you

    Myipad 1 keeps asking me to insert my user name and apple password every 10 mins or so.  How can I prevent this? Thank you.

    I don't know how wide spread this issue is. I've only come across the thread I posted before.
    You can provide feedback to Apple here.
    http://www.apple.com/feedback/ipad.html
    I wouldn't wait for an update from Apple.
    I have several other wireless devices (laptop, iPod touch, blackberry) which have absolutely no problems at all.
    Since it's just the iPad wi fi issue, try restoring as new.
    http://support.apple.com/kb/HT3828
    You may have an app installed that's causing problems with your Wi Fi. After you restore as a new device, sync 5 apps at a time, then test the Wi Fi on the iPad. Keep syncing apps... you might find a culprit.
    Scanning the Internet there seems to be lots of other people having this problem.
    Do you have the links?

  • When I save a PDF report the file name is xdo instead of "report name.pdf"

    Hi,
    I started a new project with BI Publisher integrated with OBIEE, I builded a set of reports that are working properly (these are the first reports on this OBIEE/BIP server)
    Accessing Oracle BI Cataloge I can run the reports and change the output format to pdf.
    when I press the right mouse button and select "save as" a dialog box appears.
    On the "File name" field, the default name that BIP writes is "xdo" I would like it to be the "name of the report.pdf".
    It seems that if I create a new report the file name is correct but if I change the name of the report then BIP always selects XDO as the default file name.
    Is there any place where I can configure the default name.

    Thanks for the quick reply.  I figured out how to get the desired results by using tagging.  For anyone who may reference this post in the future, I went to "Customize" in the top right corner of Adobe, then selected "Create new tool set...", looked under "accessiblity and found the "tag" option.  Hit ok, tag is added to the toolbar.  Then I highlighted the dataset in the PDF that was relevant to the output format, then clicked "tag", saved as spreadsheet.  Sorry I can't provide more details on how tagging works or if there's a more elegant solution available, but I'm sure one's out there.

  • Author name changing 9.0 Pro

    Using 9.0 Pro - recently had to change from XP to 7.
    Initially started learning 7.0 with Account name of David - no special security.
    Then as I get more knowledgeable in Win 7 and IAW recommendations  I set up an "Administrator" account with PW of "Dr. XXXXX" that allows me access to everythhing, but also allows malicious folks in also. Win 7 recommendation was to also have a non-secure account for everyday less-sensitive tasks so I did this also with the PW of "Dr. XXXXX".
    Naturally I want to use the Dr. XXXX in my Stickies for professional clout, but Acrobat insists on using David.
    Yes, I know about the tick-mark under "properties" where I can specify that my ID in the stickie is to be my log-in name. Yes, I have tried unchecking, rebooting, re-checking, rebooting, etc. Acrobat refuses to use eith my "administrator" or my non-secure name of Dr. XXXX. Frustrating.
    Any suggestions?
    Thanks,
    Neptune

    Hi Bill - thanks for the response.
    I am now beginning to "cone in" a bit am better able to describe the
    problem:
    1.  As I stated at the start, I am using Acrobat 9.0 Pro and Win7
    2.  As I go to: Edit...preferences...commenting...making
    comments...(checkbox) Always use log-in name for author name.
        Whether or not this box is checked or unchecked the result is the same:
    I go to Sticky Note on the taskbar, place it on the page, go to
    Options...properties...general...author I find "David". Yes, I can change
    the Author Name, but whether or not I further check the box, "Make
    properties default" thr result is the same - that one sticky will have the
    correct "Dr. XXXX" but the next sticky, as well as subsequent PDFs once
    again default to "David.
    3.   Thanks to ***** (whose four links all quite happily referred me to the
    Acrobat X page (I clearly stated 9.0 Pro) then quoted a generic OS (rather
    than my clearly-stated Win 7) I finally figured out the problem when I
    accessed the 9.0 Pro help in the far right lower corner of the Acrobat X
    page. Dumb of me, I admit but I had tried this initially in my own program
    "help" without really understanding what was happening.
    SO HERE IS PART OF THE ANSWER: The overall basic "author" information
    appears to reside in Edit...Preferences...Identity...Login Name (type-in
    box) David. Now the fun part. I am unable to change the Log-in name and thus
    am unable to change the sticky note. When I try to change the Log-in name I
    get a cheery tone, a blinking box, and no was to change David to Dr. XXXX.
    Well, it does seem that once I can change the ...Identity...log-in name I
    should be able to change the sticky PERMANENTLY.
    So I apologize if I have seemed a bit grouchy, and I do appreciate those of
    you who have tried to help, but it does get frustrating when those trying to
    help express a solution that uses totally unrecognized words, or do not get
    even the Adobe  product correct, or the OS...
    SO - now the underlying problem is defined. ...
    USING WIN 7 AND ACROBAT 9.0 PRO, HOW DO I CHANGE THE LOGIN NAME UNDER
    EDIT...PREFERENCES...IDENTITY if I am not allowed access?
    Again - apologies to all, but the time I have spent...
    Neptune

  • Advanced "Save as PDF" script that saves 2 PDF presets with 2 different Names

    HI Everyone,
    I am looking to improve a save as pdf workflow and was hoping to get some direction. Here is the background...
    I routinely have to save numerous files as 2 separate PDFs with different settings (a high res printable version and a low res email version). Each file has to be renamed as follows...
    Original filename = MikesPDF.ai
    High Res PDF Filename = MikesPDF_HR.pdf
    Low Res PDF Filename = MikesPDF_LR.pdf
    I was able to alter the default "SaveAsPDF" script to save the files to my desired settings and to add the suffix to the name. So with these scripts here is how the workflow operates...
    1. Open all files I wish to save as pdfs
    2. Select script to save files as high res pdfs
    3. Illustrator asks me to choose a destination.
    4. Illustrator adds the appropriate suffix and saves each file as a pdf to my desired setting. ("Save As" not "Save a Copy").
    5. Now all of the open windows are the new pdfs, not the original ai files.
    6. Now I have to close each window. For some reason Illustrator asks me if I want to save each document when I tell it to close window, even though the file was just saved. I tell it to not save and everything seems to be fine.
    7. Reopen all the files I just saved as high res pdfs.
    8. Repeat the entire process except I run the script specifically designed for the low res pdfs.
    What I would like to do is to combine these two processes so that there will be one script that saves both pdfs. From what I understand, the script can't support "Save A Copy" so the workflow would go as follows...
    1. Open all files I wish to save as pdfs
    2. Select single script to save files as both high res and low res pdfs
    3. Illustrator asks me to choose a destination.
    4. Illustrator saves each file as a High Res PDF and adds the the "_HR" suffix.
    5. Illustrator then re-saves the open windows as a Low Res PDF and replaces the "_HR" suffix with "_LR".
    Here is the code for the High Res script, The Low Res script is pretty much the same except for a different preset name and different suffix. Any pointer that anyone could give me would be most appreciated. I am pretty much a noob to this stuff so please keep that in mind.
    Thanks!
    Mike
    ---------------------------CODE----------------------------
    /** Saves every document open in Illustrator
      as a PDF file in a user specified folder.
    // Main Code [Execution of script begins here]
    try {
      // uncomment to suppress Illustrator warning dialogs
      // app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
      if (app.documents.length > 0 ) {
      // Get the folder to save the files into
      var destFolder = null;
      destFolder = Folder.selectDialog( 'Select folder for PDF files.', '~' );
      if (destFolder != null) {
      var options, i, sourceDoc, targetFile;
      // Get the PDF options to be used
      options = this.getOptions();
      // You can tune these by changing the code in the getOptions() function.
      for ( i = 0; i < app.documents.length; i++ ) {
      sourceDoc = app.documents[i]; // returns the document object
      // Get the file to save the document as pdf into
      targetFile = this.getTargetFile(sourceDoc.name, '.pdf', destFolder);
      // Save as pdf
      sourceDoc.saveAs( targetFile, options );
      alert( 'Documents saved as PDF' );
      else{
      throw new Error('There are no document open!');
    catch(e) {
      alert( e.message, "Script Alert", true);
    /** Returns the options to be used for the generated files. --------------------CHANGE PDF PRESET BELOW, var NamePreset = ----------------
      @return PDFSaveOptions object
    function getOptions()
    {var NamePreset = 'Proof High Res PDF';
      // Create the required options object
      var options = new PDFSaveOptions();
         options.pDFPreset="High Res PDF";
      // See PDFSaveOptions in the JavaScript Reference for available options
      // Set the options you want below:
      // For example, uncomment to set the compatibility of the generated pdf to Acrobat 7 (PDF 1.6)
      // options.compatibility = PDFCompatibility.ACROBAT7;
      // For example, uncomment to view the pdfs in Acrobat after conversion
      // options.viewAfterSaving = true;
      return options;
    /** Returns the file to save or export the document into.----------------CHANGE FILE SUFFIX ON LINE BELOW, var newName = ------------------
      @param docName the name of the document
      @param ext the extension the file extension to be applied
      @param destFolder the output folder
      @return File object
    function getTargetFile(docName, ext, destFolder) {
      var newName = "_HR";
      // if name has no dot (and hence no extension),
      // just append the extension
      if (docName.indexOf('.') < 0) {
      newName = docName + ext;
      } else {
      var dot = docName.lastIndexOf('.');
      newName = docName.substring(0, dot)+newName;
      newName += ext;
      // Create the file object to save to
      var myFile = new File( destFolder + '/' + newName );
      // Preflight access rights
      if (myFile.open("w")) {
      myFile.close();
      else {
      throw new Error('Access is denied');
      return myFile;

    Thank you for the reply Bob!
    Am I correct in assuming that these few lines of code replace all of the lines that I posted above?
    Also, When populating the PDFSaveOptions lines, would the end result look like this? FYI, LowRes preset name = "Proof Low Res PDF - CMYK". HighRes preset name = "Proof High Res PDF"
    #target illustrator
    #targetengine "main"
    for (x=0;x<app.documents.length;x++)
         var workingDoc = app.documents[x];
         var workingDocFile = workingDoc.fullName;
    // populate these with your settings
         var lowResOpts = new PDFSaveOptions(Proof Low Res PDF - CMYK);
         var highResOpts = new PDFSaveOptions(Proof High Res PDF);
         var lowResFile = new File(workingDocFile.toString().replace(".ai","_LR.pdf"));
         workingDoc.saveAs(lowResFile,lowResOpts);
         var highResFile = new File(workingDocFile.toString().replace(".ai","_HR.pdf"));
         workingDoc.saveAs(highResFile,highResOpts);
         workingDoc.close(SaveOptions.DONOTSAVECHANGES);

  • How to insert a sound recording and save it to iTunes?

    How to insert a sound recording and save it to iTunes?
    I have 5 voice recording on my iPhone, but the fifth was not detected on iTunes.So i can't sync

     
    Hi,
    According to my analysis, for Digital Signatures: Adobe has changed the behavior around digital signatures and SharePoint-hosted PDF files. Now, when digitally signing a SharePoint-hosted PDF file, it will be saved directly to SharePoint if that PDF file
    is already checked out. If not, the user will be prompted to check it out. When digitally signing a SharePoint-hosted PDF file in Acrobat X, Version 10.0, the user would be prompted to save that file locally and would then need to upload it separately to SharePoint
    as a new version.
    I suggest that you use Acrobat X, then check the result. For more information about Acrobat X, please refer to
    http://blogs.adobe.com/pdfitmatters/2011/06/whats-new-in-acrobat-x-version-10-1.html
    In addition, you can also consider the following third-party tool:
    http://www.arx.com/digital-signature/sharepoint
    Thanks,
    Rock Wang

  • Change author name in properties

    I have a PDF created by someone else and I need to anonymise it before sending it on. This means I need to change the author information in the document Properties, but although I can click the author name and highlight it, I can't change it. Has anyone come across this? Does anyone have a solution other than going back to the original author, who presumably would be able to change it?

    Hi alisons68876995,
    You might need to try this out:
    Go to "Edit> Preferences> Commenting" and disable "Always use log-in name for author name" option.
    Then, make a comment in the PDF and once done, go to Comment properties (Click on options in the comment pop-up) and the choose 'General' to choose the author name.
    Now, accept the changes, click on options again and choose 'Make properties default'.
    Now, adding a new comment will now include your name.
    Please check and then let me know.
    Regards,
    Anubha

Maybe you are looking for