Acrobat X Pro - Page Scaling Document Property

I have an archive of 1000's of PDF files and I want to change the Page Scaling property in each of them from "Default" to "None."  I would like to automate this process, but there doesn't seem to be any way to do this with the tools provided.
Without automation this is done by choosing File > Properties > Advanced tab > Page Scaling drop-down.  When the file is saved this set the default print-time page-scaling option to None.  My operators are having a hard time remembering to set that option when these files are printed and since this can actually be saved with each PDF file I would like to fine a way to automate setting this option for all of my PDF files.
I am not a javascript programer, but I'm pretty clever.  Does anyone have any input to offer on this option?  Googling has led me nowhere.

You can't set this property with JS directly. It might be possible through
a Preflight profile, but I wasn't able to find it there, either.
On Fri, Jun 27, 2014 at 6:49 PM, heartland printshop <

Similar Messages

  • Acrobat 9 Pro Optimize Scanned Documents problems

    Acrobat 9 Pro Optimize Scanned Documents only seems to affect the first page of the document when I try to remove the gray background that is an artifact of the scanning which I didn't do.

    But that's just plain stupid! I don't want 20 windows open when I drag 20 files into Acrobat for printing. I just want one.
    I wonder why they have done it like this.
    There are a lot of things missing from Acrobat 7 that I wish they hadn't removed. I thought upgrades was supposed to make a program better, not worse! Now I have to find work-arounds for a lot of things that was easy before and now doesn't work at all or works but takes a lot of time to do.

  • Acrobat 9 Pro Forms - Limited Document Editing Features

    Hi
    I am unable to delete pages from a pre existing pdf document.  Using the pull down menu in Document Design mode all sub menu  features are disabled (greyed out). I haved changed Edit-Preferences to 'View docs in PDF/A mode to Never. But this does not solve the problem.  File-Properties-Security shows there are NO restrictions.  All features are 'Allowed'.  It is possible to edit the document by adding form objects.
    Hope somebody can help.
    Thanks in anticipation

    Hi
    Many thanks for your response. However, it appears by way of trial and error the features which I referred in my post are not available in 'Form Editing' mode in Acrobat 9 pro.Once this application environment is closed the full rage of Document-Sub menu features become available.  So my post this was down to lack of experience using the new application - but wasnt clear in the'How To' book I purchased!  Nevertheless, thanks for your help.  I am now self learning Life Cycle Designer as a way of creating 'E-Worksheets' for my learners (I am in the education sector).  The original problem related to an examination paper (in PDF format) I was converting for similar use but needed to delete superflous pages.
    Mike

  • Add Button in Acrobat 9 Pro to Livecycle Document.

    Hello everyone,
    I have a problem that I am beating my head up against. In my company we have some pdf documents that have been created using LiveCycle for our "go green paperless movement" but we have hit a snag. We have some "virtual printers" in use with our document management software that work just as normal networked printers but instead capture an image of the document being printed and run OCR on our documents for record keeping. Each pdf document has its own virtual printer to recognize appropriate OCR templates to use. Therefor we have many virutal pritners for our many documents. We love our LiveCycle documents but, when attempting to use javascript to print to a particular network printer we have found our complication. We do not want to map the printers using windows or train our employees on adding network printers to their profile as there are so many and each document is assigned to a virtual OCR printer, we want the document to have an embedded button that automatically prints to it's assigned virtual printer.
    If I open a document and edit it with Acrobat 9 Pro, I can simply place a button field and add this java code:
    var  pp=this.getPrintParams();
    pp.interactive=pp.constants.interactionLevel.automatic;
    pp.printerName="\\\\TOSHIBABILLING2\\pcl6";
    this.print(pp);
    and the system prints to the network printer perfectly. Yet if I use that same javascript in LiveCycle we get nothing. Further reading I found some details specifying that I cannot use this same scripting to print to the network printer using LiveCycle and such am at a loss.
    I have tried open the form in Acrobat 9 Pro to edit it and just add the button using Acrobat Pro, but each time I edit the document it opens LiveCycle as the designer.
    I was not sure which forum to use as this problem has been found between working with both programs. Can someone help me to either modify the code for LiveCycle, or to at least find a way to open the document in Acrobat 9 Pro to just add the print button to the LiveCycle form. Any and all assistance would be greatly appreciated.
    ~ Max

    I can't open the Form Tools though is what I'm saying. When I open the document in Acrobat 9 Pro I have no form tools.
    I have to go to [Forms] -> [Edit Forms in Designer] in order to open the form tools.
    Only when I select to open in designer I do not get the Acrobat Pro Designer, it automatically opens the document in LiveCycle and I have no option or ability to change the document designer to Acrobat Pro.
    Is there some way I can "Force" the docement to open in Acrobat 9 Pro designer JUST so I can add the print button?

  • Acrobat X Pro crashes when document closed if launched from COM API

    Environment: Windows 7
    Acrobat X Pro
    I'm seeing some unusual behaviour when running the following code which simply launches the Acrobat Application and opens up a document with Acrobat X Pro.  Closing the document causes the program to become unresponsive and then crash.  The crash dump shows the exception as "The thread tried to read from or write to a virtual address for which it does not have the appropriate access".
    I've discounted a problem with the plugin I wrote since the program also crashes without the plugin loaded. 
    Same code runs fine with Acrobat 9 using the version 9 acrobat.tlb.
    Can anyone help or advise?
    With thanks,
    Evan
    HRESULT hr = E_FAIL;
    VARIANT_BOOL bRet;
      try
    ::CoInitialize(0);
    CComPtr<Adobe10::Acrobat::CAcroApp> pApp;
    CComPtr<Adobe10::Acrobat::CAcroPDDoc> pDoc;
    CComPtr<Adobe10::Acrobat::CAcroAVDoc> pAVDoc;
    CComPtr<IDispatch> pDisp;
    CComPtr<IUnknown> pUnk;
    CComPtr<IUnknown> pUnk_App;
      if (SUCCEEDED(hr = ::CoCreateInstance(__uuidof(Adobe10::Acrobat::AcroApp), 0, CLSCTX_ALL, IID_IUnknown, (void**)&pUnk_App))){
    hr = OleRun(pUnk_App);
    if (SUCCEEDED(hr)){
    hr = pUnk_App->QueryInterface(&pApp);
    if (SUCCEEDED(hr)){
    pApp->Show(&bRet);
    else
      return hr;}
    if (SUCCEEDED(hr = ::CoCreateInstance(__uuidof(Adobe10::Acrobat::AcroPDDoc), 0, CLSCTX_ALL, IID_IUnknown, (void**)&pUnk))){
    hr = OleRun(pUnk);
    if (SUCCEEDED(hr)){
    hr = pUnk->QueryInterface(&pDoc);
    if (SUCCEEDED(hr)){
    hr = pDoc->Open((BSTR)CComBSTR(strPath), &bRet);
    if (bReadOnly == VARIANT_TRUE){
    pDoc->SetInfo((BSTR)CComBSTR( 
    "ReadOnly"), (BSTR)CComBSTR("yes"), &bRet);}
    hr = pDoc->OpenAVDoc((BSTR)CComBSTR(strPath), &pDisp);
    if (SUCCEEDED(hr)){
    HWND hwnd= ::FindWindowW(_T( 
    "AcrobatSDIWindow"), NULL);  
    if (hwnd)ForceForegroundWindow(hwnd);
    catch(const std::wstring& s){
    EC_TRACE(LVL_ERROR, s.c_str());
    if (hr == S_OK)hr = E_FAIL;
    return hr;

    Problem solved. Evidently, the lead document in the file was corrupt. I recreated the file and it compressed without any problems.

  • Acrobat X Pro shows "The document could not be printed" error

    I used Acrobat X Pro to open an PDF file and then re-print it to another PDF by Adobe PDF printer. It shown a dialog with "The document could not be printed" message.
    Why do some PDF files occur this error ? How to fix this problem ? Thanks.

    Hi,
    Thanks for reporting the problem.
    It seems you are unable to print any pdf from Acrobat. You mentioned that you are able to print the same PDFs from iphone and other devices.
    Are you able to print from any other application(e.g. word, notepad) from the same machine where you are seeing the issue. It looks to me that your machine is not able to establish contact with the printer but your other devices are able to.
    Please confirm.
    Thanks,
    Atul

  • Acrobat 9 Pro: Open all documents in same window - don't want!!

    In Acrobat 7 there was a setting under
    Edit/Preferences/Documents that said "Show each document in its own window"
    I had this unchecked.
    I can't find this setting in 9, there is no such option (at least what I can find). I don't want all documents in separate windows, I want them in the same window! How do I fix that??

    But that's just plain stupid! I don't want 20 windows open when I drag 20 files into Acrobat for printing. I just want one.
    I wonder why they have done it like this.
    There are a lot of things missing from Acrobat 7 that I wish they hadn't removed. I thought upgrades was supposed to make a program better, not worse! Now I have to find work-arounds for a lot of things that was easy before and now doesn't work at all or works but takes a lot of time to do.

  • OT: Macintosh Users: Beware the misleading advertising for Acrobat 9 Pro Extended

    An important message to Macintosh users who are considering purchasing Acrobat 9:
    I am writing to let you Mac users know that the current marketing for Acrobat Pro is very confusing.
    On the page for Acrobat Pro,
    here.
    there is a very enticing sidebar that says "Consider Upgrading to Acrobat 9 Pro Extended"
    It outlines all the cool things that Extended can do. I had seen some publicity for Extended and so I immediately clicked that button to find out more about this version. It is a very compelling product that has a presentation application, 3D capabilities, and the form creation product Live Cycle Designer.
    I was very excited about this product, when I was lucky to have checked the System Requirements for this product. And was amazed to find that this product is Windows only!
    It is one thing to shove the Mac market off to the side as Acrobat has in the past. For instance, in the past, Acrobat products have provided features for Windows that were missing on the Mac.
    But the current advertising borders on misleading advertising. Rather than just hide the Windows -only features under the same name as the Macintosh product, Adobe has come out with a Windows-only product that doesn't clearly state it is Windows only!
    To publicize a product on a page that is cross platform and then make it very hard to find out that the product is Windows only is terrible. And I guarantee that this will lead to many people ordering something they can not use. And will be very angry about!
    I have written to several people I know at Adobe to complain about this.
    I would suggest that others use the Adobe-feedback page:
    http://www.adobe.com/bin/webfeedback.cgi
    to tell Adobe how this makes you feel.
    Meanwhile, I'm glad that I won't have to shell out the extra money for this Windows-only product.

    Buko,
    I appreciate your support, but it's even worse than you think.
    Here are the features exclusive to Acrobat 9 Pro Extended:
    Combine documents, drawings, e-mail, spreadsheets, and rich media including audio, video, 3D, and maps in a single, compressed PDF Portfolio.
    b The Pro version does not support 3D.
    Create interactive, on-demand presentations Use Adobe Presenter software now included with Adobe Acrobat® 9 Pro Extended software to liven up your slides with video, voice-over, demos, and interactive quizzes, and then output to PDF for reliable, cross-platform sharing.
    b The Pro version does not contain Presenter.
    This is the product I was most interested in.
    Work with expanded 3D features Use new Adobe 3D Reviewer software to combine multiple CAD formats in one assembly; compare a revised design to an earlier version; measure and section on precise geometry; and create exploded views, animations, and balloons. Export your work to 2D vector or raster files or save as PDF.
    b The Pro version does not support any 3D features.
    View and interact with PDF maps Search, measure, and mark up geospatially enabled PDF maps. Discover the longitude and latitude by placing your cursor over a location. Measure PDF maps in kilometers or miles.
    b The Pro version does not support the PDF maps features.
    Create interactive forms with Adobe LiveCycle Designer.
    b The Pro version does not have the LiveCycle Designer application.
    Finally, there is a feature mentioned in the Pro 9 Extended product that I cannot find in the Acrobat Pro 9 features:
    Convert a variety of video formats to FLV for reliable, cross-platform sharing of video, animations, and applications in PDF documents. With native support for Adobe® Flash® technology, no additional media player is necessary for playback.
    b But I can't definitely tell if this feature is in the Pro 9 version.
    As you can see, there are quite a few compelling features in Pro Extended. And I guarantee it is
    b only marketing, and not code,
    that is keeping these features from the Mac market.

  • Acrobat 9 Pro, ignores Formfeed during import

    When creating a PDF in acrobat 9 pro, the resulting document doesn't preserve formfeeds (chr(12)  ^L )
    In version 7, formfeeds will insert a page break (so to speak) this behavior is missing from Acrobat 9.
    I will gladly attach a sample text file if my description makes little or no sense

    Here are the results:
    document was created by "Page 1 [insert->page break] Page 2, etc.."
    as a docx file, the pdf was created correctly.
    as a text file, the incorrect behavior persisted.
    Apon inspecting the .txt file saved from office (2007), word stripped out the ^L characters, and reopening the (text) file in office confirmed that the page breaks were gone.  Apparently word uses a different way of tracking pagebreaks then the classic ^L character.
    We no longer have earlier versions of office installed, so I can't test what happenes in earlier versions.

  • Disable Auto-Rotation in OCR Process (Acrobat 9 Pro)

    Is there a way to disable the auto-rotation step as part of the OCR process? I have documents which I assemble in from images of tables. (If I had acces to the text of the tables, I wouldn't be using images of them). I place each screenshot in the correct orientation, but when I have Acrobat 9 Pro OCR the document, it auto-rotates many pages into the wrong orientation (some 90° clockwise; others 90° counterclockwise and some 180°). Since Acrobat is horribly confused by what it is seeing, I need to disable the auto-rotation part of the process so that it will OCR what it finds exactly as it finds it.

    Very likely the pages of interest have a least one character of renderable text. This might not be readily seen by you or me but it'd be there.
    Acrobat's OCR will not process a page that has any renderable text.
    Be well...

  • I can't see how to edit PDF inside Portfolio for Acrobat X. In Acrobat 9 Pro

    I can't see how to edit PDF inside Portfolio for Acrobat X. I can do this in Acrobat 9 Pro with the Document pull down menu. Did they take this away in Acrobat X?

    Whether it's maxed or not doesn't make any difference.
    The bottom part of the image/scroll bar is always under the Windows taskbar any time the URL is opened.
    It is always fixed by doing something, either switching to and back from another window, or turning on and off one or more toolbars.
    That shouldn't be necessary. The bottom part should be visible when the URL is opened.

  • Acrobat XI Pro Won't Convert 206 Page Word Document into PDF

    Hi there
    As menetioned above, Acrobat XI Pro Won't Convert my 206 Page Word Document into a PDF.  The Word document was originally a PDF file that I converted to Word and it has split all the text into sections.
    It sounds like converting a PDF into Word isn't the best way to edit, re-format and then save as a PDF again.  I would love to hear your advice on this.
    Thanks very much for your help!
    Fiona

    First before you recreate the PDF from the Word Document.
    In word: Open Document
    Next open a new Blank docment
    switch back to Word click on the ¶ button
    scroll to of go to very end of docment.
    click just to right of the perion in the last sentence.
    now go to very beginning of document
    Hold down the Shift and click to the right of first letter in document.
    Now choose copy.
    Now switch to Blank document
    Choose Paste special.
    Now choose Text only.
    If works all the words will be there spaced correct but with no ¶'s.
    Now insert returns as desired.
    Now save as a docx file under a different name.
    IF you are on a Mac use the following directions:
    go to File menu > Print > PDF Hold down PDF button until Context menu pops up.
    Choose adobe PDF.
    follow steps when the first window opens.
    Save as PDF in desired location.
    Now open the PDF in Acrobat. Document should be properly formatted and ready to go.
    AS you've found The conversion is not seamless. Acrobat doesn't distingish between automatic end of line breaks and Returns and you have to put the pieces back again.  I wish Adobe and MS would get over the jealouscy of each other and share howcode works so Thatapplications could work seamlessly together.  BUt they never will.

  • What's the easiest way to extract data out of a multi page document in adobe acrobat 8 pro.?

    We have landers that are now sending us lists with multiple social security numbers in a single pdf with multiple pages, before they used to break it up into which departments they go to, so I installed acrobat 8 pro on the users machines, now we need to get certain lines of data within that document and make a single document for different departments out of that 1 document, i tried the crop tool and made a document from cropped image but it pastes it in the corner extremely small for some reason, and I dont see how you can extract that data and bring it into either word or make it a seperate pdf document, because it dosent keep any of the formatting????
    Please help

    You might just try to do a save as DOC. The formatting may be lost, depending on how the PDF was made.

  • Adding pages in Acrobat 9 Pro (secured document)

    I am about to switch to a new computer. The old one had Acrobat 8 Professional and the new one has Acrobat 9 Pro.
    I produce a certain kind of files where, after I have printed it to a pdf, I take a copy of the pdf. One of the files I leave as it is, the other one (with a slight namechange, I add a blank page to every other page.
    This is how I did it in Acrobat 8:
    Open the file
    Change the security setting (temporarily remove it so I can add pages, when I close the file the security is automatically turned on again)
    Click on Pages/Options/Insert page
    Go to the place where I have my one blank page (with no security added)
    Insert it after page 1
    Ctrl-click and drag so I copy the page to every other page.
    Save and close
    When I try to do this in 9 the following happens:
    First when I go to Pages/Options/Insert page I have to choose "from file". Irritating with extra more step, but I can live with that.
    I add the empty page after page 1 and then try to ctrl-click and drag, but it doesn't work. I get an error message that I will try to translate (I am Swedish):
    "Pages retrieved from a secured file looses its security settings. Do you want to continue?"
    What is this? I have temporarily removed the security settings (Secure/Show security properties/Change Settings/fill in password/OK/Cancel) just as it says in the help file. If I the click on Secure, all is permitted. When I save and exit and reopen that file, the security is there again.
    As it is temporarily without security this should work as in Acrobat 8!!
    I now have 2 options:
    1. Add the empty page after every other page manually (Insert page instead of copying the one I already inserted)
    or
    2. Permanently remove the security and then remember to turn it on (lots of steps) before I save the file.
    The files are usually about 20 pages, so I have to do step 1 10 times.... I usually do about 15-20 of these files at one time, so this is a problem that will be very time consuming for me.
    Could someone please tell me what's happening and maybe give me an idea about a way to work around it?
    Lena, Sweden

    The reason every other page must be blank is because the files are start-up reports for climate control units, that the technician has to fill in. We print it as a book and as every other page is blank, only the right hand pages are printed. Then the technician can have the report on a hard board and easily fill in/go to the next page. I have done this exactly the same way since Acrobat 5, and I have done it this way for so long time now that I am afraid I will forget to turn it on again one I have turned it off...
    The reason why I don't make the document with blank pages from the beginning is that the report must be in 2 versions; one with the empty pages for us to print when a customer buys a unit, and one without that we have on our web-site, for the customers to download. Also, I have about 1.000 of these reports so adding a lot of blank pages in FrameMaker (where I make them) is a time-consuming job. Better to add the pages after I have produced the pdf, then I don't need double FM-files (and don't need to change in 2 documents when I have to change something).
    Clerarer now?
    Lena

  • Combining Word Documents - Selecting Pages - Acrobat X Pro

    Hi,
    I am hoping someone can tell me where I can find the setting to be able to do the following action,
    When combining different types of files, I get different behaviour for selecting pages, i.e. the "Preview and Select Page Range" dialog,
    e.g. for a pdf file, in the preview pane, I can navigate through the pages with the buttons at the bottom,
    However, when I try to select the pages in a word, powerpoint etc. document I get a different behaviour,
    As you can see, there are no navigate buttons. The preview also appears to be in "outline" mode, i.e. doesn't show page gaps. Just a continuous preview of the document. This makes it very difficult to actually choose which pages to combine without having to open the document itself and determine the pages I want, i.e. defeating the purpose of having a preview pane at all.
    I had a trial version of Acrobat X Pro, but then we got the full version. I am sure that in the trial version I had the navigate buttons, or at least got the page breaks shown.
    Is there a setting that might have changed?
    What could be going on?
    Thanks

    Hi Bill,
    Yeah, that is my current work around. I open the word document separately, find the pages that I want to combine and enter those into the Acrobat X dialogue box.
    However, that sorta defeats the purpose of having the preview and select pages dialogue box in Acrobat!!
    Futhermore, I am sure it worked in the trial version I had before. So I have a feeling it is a setting somewhere that just needs to be turned on/off.

Maybe you are looking for

  • Create a new item in iProcurement Receive items Region

    HI, I am trying to create a new search Message Input LOV called Supplier Part Number in the 'Receive items: Select items' Internet Procurement page Scope Region: /oracle/apps/icx/por/rcv/webui/IcxPorRcvSrchPG.RcvItemQuery Document Name /oracle/apps/i

  • How to read date and time with Oracle_Loader (10g)

    ip pc username date time 1.1.1.1 WS1 test 2000/01/01 01:01:01 I am trying to read the date and time from data formatted as above from a .txt file. create TABLE test (IP char(20), OCID char(15), ID char(30), date_logon date, time_logon date) ORGANIZAT

  • Split File to MQ Messages

    Hi My scenario is FILE -> XI -> MQ I have flat file I want to split every line of it to seperate MQ message have any1 did it already? I must convert it to xml? any relvant weblogs/threads will be usfull thx,Shai

  • Transfer iMovie 09 project to another Mac

    I have started a school video project on my Mac and want to transfer the project, including all of the source clips, to another person's Mac for them to complete the project. Any suggestions?

  • Caching in PI

    Hi, I am very new to PI. As I know so far that caching is always used for performance reasons. This means that system will still run but performance will be slow. Does that caching means the same in PI/XI or it has some different concept because some