How do I create  a PDF using Acrobat 7.0 in Windows 8 from a Visio drawing on a 64-bit system

I used to be able to create a PDF using Acrobat 7.0 from a Visio drawing in XP. Now I'm running a 64-bit system, no Adobe printer can be installed, and it is unsupported.  Help?

On a 32-bit system, there is a workaround. I do not think it is possible to get AA7 to work on a 64-bit system (no one has reported success and only 1 has suggested success with AA8). You may be able to print to a PS file and then open that in Distiller. I suspect that is the only way and you will have to find a decent PS printer driver to do it. I suspect the printer driver (and associated AcroTray) will not work in a 64-bit Win8 -- Acrobat and Distiller may.

Similar Messages

  • How do i create searchable pdfs on acrobat 9

    how do i create searchable pdfs on acrobat Pro 9?

    Master your content in a text editor (Notepad), a word processor (Word), a page layout application (InDesign) or some application that you do a "File | Print" with. Print to the Adobe PDF virtual printer that is installed with the install of Acrobat (any version). You'll have a seachable PDF. If a PDF has page content that is the image of text (the output of a scanner) use Acrobat's OCR feature to obtain searchable content.
    Be well...

  • How do I edit in PDF using Acrobat X?

    I am using Acrobat X.  There are lines from the scanner on my pdf document.  I tried highlighting but the highlighted area does not delete when I push the delete button.  I tried edit thinking I could select Cut but only Copy is active.  I am somewhat new to Adobe Acrobat.  Can anyone help?

    I do not have Photoshop.  I am using an old copier at work which batch scans documents into either Tiff or PDA files. 
    The copier sometimes leaves black lines or black dots on the document and I am trying to remove them.
    I highlighted a line but Delete does not work.  Tried Edit intending to use Cut but only Copy is active.  Am I doing something wrong or is this something the software cannot do?  Thank you for your help.

  • How to convert html to pdf using acrobat sdk 8.0?

    hi
    I am a beginner of acrobat sdk .
    I want to know How to use acrobat sdk 8.0 to convert html to pdf?
    herere some questions :
    1:How to support navigation inside PDF file that generated using acrobat sdk 8.0? For example: theres catalog in the top of HTML file, customer hopes can navigate inside the PDF file just like navigating inside the HTML file.
    2:How to support operating some controls in the PDF file that generated using acrobat sdk 8.0? For example: therere some drop down list and text box in HTML file, customer hopes can input text in the text box, click the drop down list to see available options in it just like in HTML file.
    Thanks in advance for any help and suggestion.

    Hello,
    I want a system to re-brand my 37 pages PDF for affiliates.
    I want a php dynamic link in the PDF online in order to personalize automatically the PDF for each affiliate. I need to change 2 links each time. The affiliate ID and the Paypal email (payment button) in page 36.
    Can you help?
    Please let me know
    Thank you
    Alex
    PS My system is online and i can give you the url if it helps.

  • How do I redact a PDf using Acrobat XI?

    I just upgraded from Acrobat 9 to Acrobat XI and it doesn't seem to have the redaction functions that Acrobat 9 had.  Can anyone tell me where to find them.  Thanks.

    In Acrobat XI Pro, it's in Tools > Protection. But it's not in Acrobat XI Standard.

  • Is there any way I can convert web pages to PDF using Acrobat X Pro in Explorer from Office 2013?

    I get the error message "Could not access Acrobat's web capture facility.  Acrobat may be busy or waiting for input."  I have Win 8 OS also. Is there any way to convert?

    I doubt that PDF Maker of AA X will work in OFFICE 2013. You should be able to print to the Adobe PDF printer, though I am not sure how AA X works in Win8, another potential problem.
    For a web site, you should be able to open the web site directly in AA X.

  • How can I create a function using TestStand variables and call it from a step's Pre-Expression?

    In one sequence I have dozens of Pre-Expressions which are almost the same thing, like this...
    Locals.tagID = (Parameters.singlePhaseEnabled ? "L" : "D") & Str(Locals.phase) & "006"
    ...and the only thing different is that three digit string at the end ("006" will vary). How can I write a function that I can call from a step's Pre-Expression so it would look something like this? ...
    Locals.tagID = MyNewFunction("006")

    You cannot write custom commands for expressions.
    That being said, there are a couple of options:
    Create a subsequence with a single step. Use a parameter of the sequence as "function parameter".
    Create a custom step type including a substep module which implements the function. Add an edit substep to enable the user of the steptype to gracefully change the parameter.
    Store the variable parameter in a local/file global variable and modify the value in each step. This will, at least, keep the "function" the same for every step.
    Norbert

  • How to create a blank PDF using acrobat SDK in perl or c#

    please help me with creating blank pdf using acrobat SDK in c# or in perl

    Hi, can you please let me know which version of Adobe you used in this tutorial?
    I have the Adobe Reader XI - is there a similar tutorial for this version?
    Thank you.

  • How to disable 'display pdf (using Acrobat Pro X) in browser'?  Note:  The option is unavailable to un-check box.

    How to disable 'display pdf (using Acrobat Pro X) in browser'?  Note:  The option is unavailable to un-check box.

    Hi URT301,
    Please see this document: PDF Ownership when Reader X is Installed with Acrobat. You'll find several solutions to this problem in the FAQ section.
    Please let us know how it goes.
    Best,
    Sara

  • How do I create a pdf file that is 300 dpi in Adobe Acrobat XI?

    How do I create a pdf file that is 300 dpi in Adobe Acrobat XI?

    PDF files do not have a "resolution" - they aren't images. The pages are a mix of vector art and text, and raster (pixel-based) graphics. The raster items on a page can (and often do) have different resolutions.

  • Creating PDF using Acrobat SDK

    Hello All,
                    I am developing application in VC++ which has requirement to create PDF file programatically and then write that file .
                    I just wanted to know can I use Acrobat SDK to create and Edit PDF file?
                    Please help me as I am new to this.
    Waiting 4 soon reply.......................
    Thanks

    Dear Arthi,
    This is the C++ code which will help u to create the pdf using the VC++ plugin, Hope this helps you,
    PDDoc TargetPDF = PDDocCreate();
    ASFixedRect mediaBox = { fixedZero, ASInt32ToFixed(792), ASInt32ToFixed(612), fixedZero };
    PDPage emptyPage = PDDocCreatePage (TargetPDF, PDBeforeFirstPage, mediaBox);
    PDPageRelease (emptyPage);
    PDDocSave (TargetPDF, PDSaveFull | PDSaveCollectGarbage | PDSaveLinearized,
        pdfPathName, ASGetDefaultUnicodeFileSys(), NULL, NULL);
    PDDocClose (TargetPDF);
    ASFileSysReleasePath(fileSys, pdfPathName);
    Regard's
    Amith Sai

  • How to make a Word for Mac 2008 doc into a PDF using Acrobat Macintosh

    Any ideas how to turn a Word for Mac 2008 document into a PDF using Acrobat Pro?
    Thank you if you can help.

    In Word  2008 for Mac:
    go to Save As... from File menu.
    when window open click on Button show the current file type.
    when thi menu drops down you will see the following
    Choose PDF
    save.
    Then open up in Acrobat.

  • How do I create a pdf from just one or two pages of an existing pdf?

    I just purchased this product (acrobat online)
    and it is not allowing me to do the things it promised, e.g. saving portions of one pdf to another, combining pages or entire docuements to create, even typing into a document (editing)! I am so frustrated - can someone please help!?

    But I jut paid $89.00 for the adobe pack - if I subscribe to Acrobat Plus, will that be credited?
    Date: Thu, 19 Sep 2013 15:50:14 -0700
    From: [email protected]
    To: [email protected]
    Subject: Files.Acrobat.com How do I create a pdf from just one or two pages of an existing pdf?
        Re: How do I create a pdf from just one or two pages of an existing pdf?
        created by H.Spector in Files.Acrobat.com - View the full discussion
    Hi,
    Thank you for your subscription.  If you are Acrobat Plus subscriber then you can extract the pages from the PDF file using Tools> Pages> Extract pages.
    You can find "Tools" at right top once you open your PDF file in Acroat.
    If you are subscriber to PDF Pack then please download Acrobat XI Plus from www.adobe.com.
    PDF Pack service offers "Convert to PDF", "Export from PDF"(to Word/PowerPoint/Excel/RTF formats so that you can edit the exported files) and "Combine Files" (combine your files into a single PDF file).
    Please let me know if you have any quesitons.
    thank you.
    hisami
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5697921#5697921
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5697921#5697921
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5697921#5697921. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Files.Acrobat.com by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Reducing size of a PDF using Acrobat 9 Pro

    Hello, I want to reduce the file size of a large number of pdfs which will be available for download on a website I'm building. These pdfs were created a few years ago and in most cases the fonts were converted to outlines. I want to reduce the size of the pdfs using Acrobat 9 Pro. I tried one and the size went from 2.3 Mb down to 156 Kb when I saved as an Acrobat 7. Will these be able to be viewed by anyone using Acrobat Reader. The end users will only be viewing and reading the pdfs. Thanks in advance for any responses.

    mocikey wrote:
    Hello, I want to reduce the file size of a large number of pdfs which will be available for download on a website I'm building. These pdfs were created a few years ago and in most cases the fonts were converted to outlines. I want to reduce the size of the pdfs using Acrobat 9 Pro. I tried one and the size went from 2.3 Mb down to 156 Kb when I saved as an Acrobat 7. Will these be able to be viewed by anyone using Acrobat Reader. The end users will only be viewing and reading the pdfs. Thanks in advance for any responses.
    If you are familar with the PDF Optimizer and how to go to it, open PDF Optimizer.
    First images for a website should never be more than 150dpi.
    Go to images and set, for DPI  150  for color images Grayscale and Monochrome.
    Next open fonts in optimizer and look for duplicate fonts.
    example:
    Ariel
    Ariel Bold
    Ariel Bold
    Ariel Italic
    Courier New Bold
    remove the duplicate Ariel Bold.
    Many times there are 5-10 instances or more of the same Font/Font style.
    Remove all duplicates.
    Save as a new file you never want to save over your original in case what you end up with doesn't turn out.

  • How to identify fonts in pdf using vc++

    Hi All,
              how to identify fonts in pdf using vc++. could you please help me out in this scenario.
    Thanks,
    Parthasarathy.S

    I believe there is a sample plugin in the SDK for doing this.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 15 Dec 2011 02:27:21 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: how to identify fonts in pdf using vc++
    how to identify fonts in pdf using vc++
    created by partha56<http://forums.adobe.com/people/partha56> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4086333#4086333

Maybe you are looking for

  • Mac Mini Won't Boot with VGA Monitor Connected

    I have a new Mac Mini connected to an older VGA monitor using the Apple brand VGA adapter.  The mini is fully up to date and runs perfectly when booted.  However, if I reboot the mini with the VGA monitor connected, it fails to boot.  I just hear the

  • Lightroom mobile performance and "previous" button issues

    I am considering subscribing to Lightroom mobile for iPad so I decided to give it a trial run with 2000+ photos sync-ed (iPad 3, Nikon D7000 raw files). The performance is awful! Browsing through the images is fairly decent. Flagging also does a good

  • IO Error when using p2v

    I'm using Ovm 3.2.2 p2v to convert a Windows 2008 machine. By the end of the download the conversion fails with: IOErrror [Errno 5] Input/output error This is part of the exception shown on on the physical machine been converted: Exception happened d

  • Installing Control Panel 2/3 causes problems in opening Excel sheets

    After installing the control panel 3.0, I can't open Excel sheets properly anymore. A message says that the Excel sheet contains corrupted data and Excel can try to restore them. After confirming this, the excel sheet shows opened but all formating i

  • No case for some selected values

    Hi, I need some help on create VI model. I need create model shown on Pic. 1.png, but I have problems with case structure, it report "Case Structure: No Case for Some Selector Values". P. S. Sory for bad English  Attachments: Pic. 1.png ‏51 KB DAC 8