Paper Sizes in Acrobat XI Standard/ Win7

Hi,
Our firm recently upgraded from Acrobat 7 Pro. I researched online prior to making this switch, and identified the following differences between Standard and Pro based on the published Product Comparison chart:
limits to batch actions and automation
conversion from PDF to Powerpoint
creating PDF Portfolios
inserting interactive content (incl Flash)
FormsCentral
File comparison and highlighting
Redaction tools
Accessibility verification tools
I specifically noted that Standard and Pro both advertised the exact same ability to "Create PDF files from virtually any desktop application that prints." I didn't need the Pro features, so we purchased Acrobat XI Standard.
We are an architectural firm, and we plot to large PDF paper sizes. We are on 64-bit AutoCAD, and thus the PDFMaker plug-in is not compatible (Adobe has still not updated their plug-ins to be 64-bit compliant), so we have to use the PDF Printer. This should not be a problem, because that's the way we always did it before; but after installing Acrobat XI standard, the large paper sizes we need are not available. So, technical support issue, right? After several long (and friendly) chats with Adobe Support, I received conflicting information about whether this feature should be available or if it is supposed to be limited to Pro; we were finally able to hack a solution by using a paper size name that did not conflict with the system sizes that were already installed (but which the PDF printer refused to see).
I see a lot of "MVPs" on this site stating as a fact that large paper sizes are limited to the Pro version. I asked Adobe during our support chat for documentation of this limitation of Acrobat Standard, and they could not provide such documentation. As noted above, Acrobat Standard IS able to print to large formats, if you create the paper size yourself and name it something other than the system-installed size.
So... for the sake of anyone else who is researching this issue:
If you have a solution to make Acobat Standard recognize all the system-installed paper sizes, I'd love to hear it
Don't trust MVPs on this forum
Don't trust Adobe's marketing materials
Needless to say, this was a disappointing hacked-together solution after spending thousands on new software. I hope it saves someone else the headaches that I've gone through to make this work for us.

Bernd,
The paper sizes are pre-defined in the Windows 7 Print Server, but the Adobe PDF printer will not recognize them. In fact, when I try to add one, it says "Not allowed to modify system or printer defined paper size." That's why, as noted above, we had to name it something else and effectively duplicate the system sizes to get the PDF printer to recognize them. I went through this with Adobe Support already. Please don't confuse the issue with non-answers; there are plenty of threads on this forum already that have similarly unhelpful or misleading information.

Similar Messages

  • Architectural paper sizes in Acrobat

    I know that standard architectural paper sizes are available to Arcobat, but I don't know how to make Acrobat (6.0) know about them. "Postscript custom page size" is NOT an option. How do I install paper sizes? Thanks.

    The AutoCAD discussion group indicates that Architectural paper sizes are automatically available in Acrobat Pro. Is this the case? How can I find out prior to spending $500?

  • Acrobat 9 Standard missing paper sizes.

    I recently had Acrobat 9 Standard installed on my work computer.  Previously I had CS4 with Acrobat Pro installed but had to transfer the license to a coworker.  I'm now frustrated because all of the page sizes that I typically use are gone.  All fo the Arch and Ansi sizes are missing.  In the print preferences dialog I tried to add a new page size called Arch E1 and I got an error saying "Not allowed to modify system or printer defined paper size (Arch E1).  Only user defined paper size can be modified or deleted."  Apparently acrobat knows that Arch E1 is a standard paper size but its not available in the paper size selection menu.  I can go through and make a bunch of new custom paper sizes and give them alternate names but that's a little bit frustrating to have to go through and set up my own paper sizes when Acrobat already knows they exist.  I guess my question is how do I get Acrobat 9 Standard to show the Arch and Ansi paper sizes?

    Unfortunately, this is only available when using the Pro. version of Acrobat.

  • Page Setup / Paper Size- custom not an option

    Following previous advice to get Adobe Acrobat installed to enable more print options, which I did, I am not seeing the custom paper size available as an option under page setup.
    I am trying to follow along with Matt Kloskowski's video tutorial for print presets where he goes in and makes a contact sheet effectively become a triptych print setup. He goes to change the paper size from the standard to 11" x 4", and clicks Page Setup/Paper Size/Manage Custom sizes and enters the new dimensions.
    When I go to Page Setup, and choose Adobe PDF under printer name, "manage Custom Sizes is not an option for me under Paper size- they are all standard sizes.
    Any thoughts on why this might be?

    Set your paper size as a custom size:
    1. Open the Pages doc
    2. Press shift+ ⌘ +p to open the page setup
    3. In the 'settings' pull down menu choose 'custom paper size'
    4. Click on the new button and create your custom size and save by pressing o.k
    5. Now your custom size will appear in every page set up dialogue.
    For my two printers this is all I have to do. The printers adopt the page set up selected in Pages.
    Kurt

  • Printing on paper sizes larger then A3.

    Hi all,
    I tried searching the foram for this specific problem but did not get success. I am working on sending custom 2D graphic elements to the printer/plotter using both the 'PrinterJob.getPrinterJob()' and the 'ServiceUI.printDialog()' methods. It works fine for printing/plotting if the page size is up to A3 but fails once we try printing to a bigger paper size. I also have tried using the java ServiceUI.printDialog but it provides a limited list of paper sizes rather then the standard set of paper sizes provided by different vendors. I have tested following code with the adobe pdf print driver and HPDeskJet 1050C plotter but each time it appears that my A2 size is cropped and shown as just part of my graphic element covered by A3 paper size. Kindly have a look at the code below and let me know if I am doing some thing wrong. I would be really thankful to you for your time and help in this regard.
    Ishfaq
    //Simplified Code snippet
    public void doPrint()
    PrinterJob pj = PrinterJob.getPrinterJob();
    pageFormat = pj.defaultPage();
    try
    double mi_imageableX = 0.0;
    double mi_imageableY = 0.0;
    double mi_width = 1190.0;
    double mi_height = 1684.0;
    pageFormat.setOrientation(java.awt.print.PageFormat.PORTRAIT);
    paper = new Paper();
    paper.setSize(mi_width,
    mi_height);
    paper.setImageableArea(mi_imageableX, mi_imageableY,
    mi_width,
    mi_height);
    pageFormat.setPaper(paper);
    System.out.println("page orientation is "+ pageFormat.getOrientation() +" from pageformat object. Its width and height are "
    + pageFormat.getWidth() + ", "
    + pageFormat.getHeight()
    + " and its imageable x,y,width and height values are " +
    pageFormat.getImageableX () + ", " + pageFormat.getImageableY() + ", "
    + pageFormat.getImageableWidth() + ", " +
    pageFormat.getImageableHeight());
    catch (Exception ex)
    ex.printStackTrace();
    pj.setPrintable(this, pageFormat);
    if (pj.printDialog())
    try
    pj.print();
    catch (Exception p)
    p.printStackTrace();
    //implements the printable interface
    public int print(
    java.awt.Graphics graphics,
    java.awt.print.PageFormat pageformat,
    int pageIndex) throws java.awt.print.PrinterException
    if (pageIndex > 0)return java.awt.print.Printable.NO_SUCH_PAGE ;
    Graphics2D g2 = (Graphics2D) graphics;
    printGraphicElements(g2);
    return java.awt.print.Printable.PAGE_EXISTS;
    private void printGraphicElements(Graphics2D g2d)
    //draw different graphic elements
    Rectangle2D.Double border = new Rectangle2D.Double(5, 5, pageformat
    .getImageableWidth()-10, pageformat.getImageableHeight()-10);
    g2.draw(border);
    }

    Apple and Canon programmers don't read here.
    You need to tell them about this at www.apple.com/feedback

  • Acrobat x standard,  win 8,   paper sizes Arch A B C D E ...  avail when plot to hp plotter,  not avail when plot to pdf

    Acrobat x standard,  using latest win 8,   paper sizes Arch A B C D E ...  avail when plot to hp plotter,  not avail when plot to pdf
    any ideas?

    You mean add custom sizes ?
    I just used postscript sizes in my CAD program,  and saved a different printer definition file for each,  that worked for cad,  look into large pdf's tomorrow.
    thx jp

  • Document size error when printing with Acrobat XI Standard

    Hello,
    I seem to be having a problem when I try to print to my Colorwave 600 plotter, using Acrobat XI Standard. I am trying to print a 36" wide document, but for some reason when the printer receives the information, it thinks I'm asking for a 42" wide print. The biggest paper the colorwave can use is 36", so this is problematic.
    The sheet size in Acrobat is set correctly. The problem is only when the printer receives the information.
    If I select "print as image" in advanced settings, it prints. I'm just confused why this would happen, and why printing as an image would work? I would prefer not to print as image as it makes the text in my files jagged.
    I have tried wiping my print drivers and reinstalling, but this didn't help. Also, this problem only happens printing from a PC. It works fine if I print from a Mac.
    Any advice?

    My workaround by using a virtual PDF printer isn't as good as I hoped. If the files generated by printing with flashplayer exceed about 3 pages the temp file generated in /var/spool/cups is so big that it exceeds my partitions size.
    The file can get up to more than 1GB. With documents from one or two pages the temp file is about 500MB, the correct pdf gets generated after that and is placed under /var/spool/cups-pdf/<user> and is about 500kb small. The very big temp file get's deleted after that.
    Why is this temp file so big and how can I avoid it getting so big?
    Last edited by @op (2011-09-01 20:30:30)

  • In Adobe Acrobat X Standard, our user used to be able to resize drawings to 8.5 x 10, it stopped working yesterday. It allows her to do this without an error but the size does not change?

    In Adobe Acrobat X Standard, our user used to be able to resize drawings to 8.5 x 10, it stopped working yesterday. It allows her to do this without an error but the size does not change?

    Try unmounting the volume on your iMac using Disk Utility. Then mount it again. You may need to reboot the laptop or relaunch its Finder process (using the Force Quit window) after remounting the drive on your iMac. Remember that no process may be accessing any files on the drive you plan to unmount, or the unmount will fail. Unmounting and remounting an external drive on my iMac made it become visible on my MacBook Pro after it had disappeared.

  • Acrobat 8 Standard not printing at PC with Win7 64 bit

    Hello I installed Acrobat 8 Standard at brand new PC with Win7. It does not print into PDF although Acrobat itself works....
    I tried to download updates from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows for version 8.x but it cannot be installed.
    Please advice what to do.

    It says (in Czech langugae) something like "Installation system of Windows cannot install repair tool for upgrade, because programme you want to upgrade was not found. It is also possibble this repair toll serves for upgrade of another version of the programme. Please check if programme you want to upgrade is installed in your PC and if you use correct repair tool"
    This was an aswer when attempting to install
    Adobe Acrobat 8.1 Professional and Standard update - multiple languages (AcrobatUpd810_euro_incr.msp)
    Before it I installed this:
    Adobe Installer Transform Tool
    268KB
    8/21/2008
    Adobe Customization Wizard 8

  • Reading adobe acrobat 8 standard with adobe acrobat 7.....I have to submit a CD of a paper presentation to a state DOT and they have requested that "the electronic copy should be in a .pdf format, version 7.0".

    My files need to be saved to pdf today, and I am concerned that my Adobe Acrobat 8 Standard files may not be readable to someone who says they want the files saved in "pdf. format, version 7.0"......is that a misconception on their part, or do I need to do anything different?  If I install version 7, it will probably overwrite my version 8, correct?
    I appreciate any feedback to resolve any doubt of readability for the potential client.
    Thanks,  cdd

    In Adobe Acrobat 8 use the menu Document > Reduce File Size...

  • MFP M177FW non standard paper sizes

    hi all
    i'm using libreoffice on both windows and linux (mint ubuntu and debian testing) and sometimes i have to print on very non standard sizes: 102 * 333 mm
    it's a huge pain to decently print on such a paper: is there an easy workaround, especially for linux?
    yesterday i've noticed that after some 50 prints on such a format, printer would stop before each print for cooling down, even if it didn't work or has been off for minutes: is it normal?
    thank you
    This question was solved.
    View Solution.

    Hi @Carlo85 ,
    I see that you would like a easier method for printing custom sizes and the printer keeps going into cool down mode.
    I can help you.
    I have provided a document with the error code message you are getting.
    Resolving Control Panel Messages.
    You can create a custom form within the print driver.
    Create Custom Paper Sizes in Windows 7, Windows 8, and Mac OS X.
    Sorry I don't have any documentation for Linux. You would have to contact them for further support.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Help with custom page size support for non standard paper

    Firstly, we appreciate any support you may be able to provide, we have already thrown considerable effort at this and it has been very time consuming and frustrating.
    To support a number of business functions need to print to (non standard) continuous and mulitpart paper on a dot matrix printer. The (test) Mac is a 10.4.11 G4 laptop, the printer is an Oki Microline 520 (9 pin 80 column, IBM Proprinter, Microline or Epson FX personalities with a parallel interface) which has been networked via a HP JetDirext Ex Plus print server. That part appears to be operating correctly.
    We have tried a number of drivers / printer personalities with varying levels of success:
    ESP / EPSON 9-Pin Series CUPS v1.1 / Epson FX personality
    ESP / OKIDATA 9-Pin Series CUPS v1.1 / Oki Microline personality
    Ghostscript / epsonc / Epson Dot Matrix Foomatic PPD / Epson FX personality
    Ghostscript / ibmpro / IBM ProPrinterII Foomatic PPD / IBM Proprinter personality
    Ghostscript / okiibm / Oki Microline IBM compatible 9 pin Foomatic PPD / IBM Proprinter personality
    There were no appropriate drivers in Gutenprint (5.2.3 version) The most successful is the okiibm / Oki Microline IBM compatible 9 pin settings, it can print A4 and honors the Printer Features Resolution settings in the print dialogue.
    Q1: Should we see anything in the Printer Info / Installable Option, it is always blank ?
    The issue is custom page sizes, we can manage / add Custom Pages Sizes via the Page Setup / Paper Size interface and they draw on the screen OK but they do not work at the printer (various issue at the printer such error messages, junk printing and wrong orientation):
    Q2: Are we heading in the right direction or is there a better way to handle this ?
    Q3: Would 10.5 solve all our problems, are the print drivers any better ?
    Q4: Is this the correct way to specify custom page sizes, is this all we need to do ?
    Q5: Is so how do we get the driver to respect the size, do we need another filter or something ?
    Q6: Is it possible to add (by hand) custom page sizes to the ESP drivers or Foomatic PPD files so they they appear as a "standard" offering in the Page Setup / Paper Size interface ?
    Sorry for the long / complicated post and thanks in advance for any advice / assistance.

    Matt Broughton wrote:
    Testing on 10.5.7, Tried both Oki 9-Pin Series 1.3 / Microline personality (no joy) and Epson 9-Pin Series 1.3 (this is a much better driver than 1.1) / Epson FX personality but not much joy with custom page sizes,
    The Oki 9-pin Series 1.3 and the Epson 9-Pin Series 1.3 should produce the same results. The only difference in the PPDs is the printer model name.
    After some testing, I find that the output is not the same despite the two PPDs being virtually identical. I did spot in the CUPS source code for the rastertoepson filter that there is some model name matching for Epson printers. Thus I can see where the output using the Oki 9-pin PPD could be different than when using the Epson 9-pin PPD.
    but again once I imbedded the page size into the ppd some (but frustrating) luck. I can get it to respect the paper orientation and it prints well but I could not get the form length to work properly. At best over a print run of 7 labels it would creep up the label by about 0.1 inches / 2 mm.
    Just for the fun of it, I made some additions to the Epson 9-pin 1.3 PPD. All I can say is that I could print a job to file. I have no way to know what it would look like on paper.
    I did find that using a custom paper size did add some unwanted margins to the output bounding box. Putting the custom page size into the PPD seemed to get around that issue.
    I added the following lines to the Epson 9-pin PPD 1.3--
    <pre style="overflow: auto;font-size:small; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #ddd; padding: .3em .8em .3em .8em; font-size: 9px;">*PageSize Label1/Label1: "<</PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *PageRegion Label1/Label1: "<<PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *ImageableArea Label1/Label1: "0 0 288.00 107.80"
    *PaperDimension Label1/Label1: "288.00 107.80"</pre>
    This adds a paper size with the 4 inch (288pt) width and 1.5 inch (107.8pt) height. That represents the 1.4 inch label and the 0.1 inch gap between labels. I set 0pt margins except for the bottom where is set the 0.1 inch (7pt) gap as the bottom margin.
    The full diff in context is--
    <pre style="overflow: auto;font-size:small; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #ddd; padding: .3em .8em .3em .8em; font-size: 9px;">loki:~ matt$ diff -u /usr/share/cups/model/epson9.ppd ~/Desktop/epson9.ppd
    --- /usr/share/cups/model/epson9.ppd 2009-02-20 20:16:53.000000000 -0600
    +++ /Users/matt/Desktop/epson9.ppd 2009-06-06 20:37:06.000000000 -0500
    @@ -42,6 +42,7 @@
    *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
    *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
    *PageSize FanFoldUS/US Fanfold: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
    +*PageSize Label1/Label1: "<</PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *CloseUI: *PageSize
    *OpenUI *PageRegion/Media Size: PickOne
    *OrderDependency: 10 AnySetup *PageRegion
    @@ -50,17 +51,20 @@
    *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
    *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
    *PageRegion FanFoldUS/US Fanfold: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
    +*PageRegion Label1/Label1: "<<PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *CloseUI: *PageRegion
    *DefaultImageableArea: Letter
    *ImageableArea Letter/US Letter: "18.00 18.00 594.00 774.00"
    *ImageableArea Legal/US Legal: "18.00 18.00 594.00 990.00"
    *ImageableArea A4/A4: "18.00 18.00 577.00 824.00"
    *ImageableArea FanFoldUS/US Fanfold: "18.00 18.00 1053.00 774.00"
    +*ImageableArea Label1/Label1: "0 0 288.00 107.80"
    *DefaultPaperDimension: Letter
    *PaperDimension Letter/US Letter: "612.00 792.00"
    *PaperDimension Legal/US Legal: "612.00 1008.00"
    *PaperDimension A4/A4: "595.00 842.00"
    *PaperDimension FanFoldUS/US Fanfold: "1071.00 792.00"
    +*PaperDimension Label1/Label1: "288.00 107.80"
    *MaxMediaWidth: "1080.00"
    *MaxMediaHeight: "86400.00"
    *HWMargins: 18.00 18.00 18.00 18.00</pre>
    I don't know if that will help you or not. Let us know what sort of progress you make.
    Matt

  • Preset 'Standard' paper size wrong

    I have a user who somehow managed to change the preset 'standard' paper size to a custom size. He didn't go into the terminal, didn't edit any plists, etc that he is aware.
    Since we've got a work around already (created a new preset with US Letter) it isn't urgent, or more than an academic exercise.
    I would like to be able to fix the standard preset eventually, but I also want to know how he could have possible changed the standard preset.

    jared_e42 wrote:
    I should have thought of that. Too much fixing windows lately...
    When we removed the presets plists, it removed the preset we had tried as a work-around, but didn't effect the paper size of the 'standard'. I also had the user check the international system pref to see the region, but I can't imagine a region would use a poster-size as their default paper.
    Is the current printer setting the paper size? What if you add a printer using the Generic Printer? What is the paper size in Standard then?

  • My Deskjet HP7610 can't sense the 11 x 17 paper on any of my Acrobat or Photoshop "fit to media" jobs.  Why, after I've set every setting to 11 x 17 do both printer and computer cite "paper size mismatch?

    My Deskjet HP7610 can't sense the 11 x 17 paper on any of my Acrobat or Photoshop "fit to media" jobs.  Why, after I've set every setting to 11 x 17 do both printer and computer cite "paper size mismatch?

    Mandeep5062 wrote:
    Moving to Photoshop Forum
    Try again.

  • Adobe Acrobat XI printed to blank PDF from Brava Reader v7.3 on a paper size 100mm x 3000mm

    I am on Adobe Acrobat XI and am having trouble printing to PDF from Brava Reader v7.3 to a paper size 100mm x 3000mm. The output is a blank PDF to the given paper size.  I was able to print with image from Brava Reader v7.2.  However, when I installed a freeware PDF995, it allows me to print to this paper size (albeit with only 600DPI - too low resolution).  What is the problem with Adobe Acrobat?  Please help?

    Is AcroTray running in the background? Can you print to file using the Adobe PDF printer and open the file in Distiller to complete the conversion to PDF?

Maybe you are looking for

  • Is this Possible? Stream Video File using Server or Encoder?

    Is it possible to stream a video file (.mp4) Live using the Flash Media Encoder or by placing the file in an app instance on a flash media streaming server? Thanks!

  • PSD files don't up-load because "maximum compatability" issues

    I have a load of PSD files that don't load because they were saved in previous versions of PS when maximum compatability did not exist in preferences. The problem is they are mixed in with other files and Light Room does not identify the specific fil

  • [SOLVED] Network Manager - Device not ready

    Hey, I can't use the wlan feature of networkmanager because its grayed out with "device not ready" written on it.  My wlan device is definitely enabled. iwconfig: wlan0     IEEE 802.11abgn  ESSID:off/any            Mode:Managed  Access Point: Not-Ass

  • Qualtiy Degradation

    I am compressing two rather large QT files, total run time about 3 hours and 30 minutes. As this is going from FCP to DVD Studio Pro and I am working on my powerbook, the compressor times are quite long, roughly the realtime for the videos. It would

  • SQL Data Modeler 3.0 EA1 trying to create primary key on OT

    Hi, I'm trying to modify a primary key of an object table that was reversed (imported) from an Oracle 11.2.x RDBMS and am getting the error message "Incomplete Index definition". It is showing in the window "Index Columns Assignment". I get to the 'P