Create pdf app

Why can't I download the create pdf app?

Good day,
Are you having trouble downloading the CreatePDF Desktop Application from https://www.acrobat.com/createpdf/en/desktop-download.html?
Are you getting an error message?
-David

Similar Messages

  • How do I create an app from my Adobe pdf forms to use on any mobile device as well as windows and ios?

    How do I create an app from my Adobe pdf forms to use on any mobile device as well as windows and ios? I have all the apps in Creative Cloud by the way.

    If you already purchased it with the same Apple ID, then you will not be re-charged.

  • Create Pdf from a App

    Hi, I would like to create pdf file inside my App and then upload/email to internet. Is this possible?
    thanks,
    ff

    Hi,
    try to read a little bit more about creating a .pdf document here:
    http://www.cocoadevcentral.com/articles/000074.php
    here to make a preview for such a document (PDFKit, PDFView):
    http://developer.apple.com/Cocoa/pdfkit.html
    About uploading it in internet you should be a little more specific, what do you mean by it? What is your intent?
    Regards
    - artOf

  • Create PDF crashes webapplication

    Hi,
    We have a website that creates PDF-reports using SAP Crystal Reports runtime engine for .NET Framework 4 (64-bit) SP1. The site runs on Windows 2003 R2 x64.
    The site (w3wp.exe) crashes every now and then when a report is generated in PDF. We cannot trace it back to specific reports, users or actions. It seems to be random. We don't have this issue on x86-webservers with the same application and CR-version.
    We got a memory dump from one of the crashes. The dump can be found [here|http://www.megaupload.com/?d=ZFVJ7FEZ] (zipped, about 330MB). Microsoft already analyzed this dump and this is the conclusion :
    Here is my analysis: as you already noted, the stack goes from the SAP component to msvcr80, based on the method name (without the private symbols we cannot see the arguments passed etcu2026) it looks like they are initializing something which requires memory to be moved around, hence the call to memmove_s
    0:076> kpL
    Child-SP          RetAddr           Call Site
    00000000`27ceec88 00000000`781b6a70 msvcr80!memcpy(unsigned char * dst = 0x00000000`26bbceb8 "???", unsigned char * src = 0x00000000`26bbceb8 "???", unsigned long count = 0)+0x1ec
    00000000`27ceec90 00000000`41d69db4 msvcr80!memmove_s(void * dst = 0x00000000`00000000, unsigned int64 sizeInBytes = 2, void * src = 0x00000000`000001c2, unsigned int64 count = 0)+0x80
    00000000`27ceecd0 00000000`41d6b2bc crxf_pdf!UXFInitializeW+0x1834
    00000000`27ceed50 00000000`37b2d78f crxf_pdf!UXFGetExportFormatsExW+0x10c
    00000000`27ceeda0 00000000`37da9c1a crpe32!CRPEConnectionInit+0x365df
    00000000`27ceeef0 00000000`37da0b93 crpe32!MWCleanupProcess+0x4ffca
    00000000`27ceefd0 00000000`37da54eb crpe32!MWCleanupProcess+0x46f43
    00000000`27cef720 00000000`37d27bb4 crpe32!MWCleanupProcess+0x4b89b
    00000000`27cef750 00000000`37d38964 crpe32!CRPEConnectionInit+0x230a04
    00000000`27cef820 00000000`37d39a8f crpe32!CRPEConnectionInit+0x2417b4
    00000000`27cefb90 00000000`37d39dac crpe32!CRPEConnectionInit+0x2428df
    00000000`27cefbe0 00000000`37d3a45c crpe32!CRPEConnectionInit+0x242bfc
    00000000`27cefd30 00000000`783917cd crpe32!CRPEConnectionInit+0x2432ac
    00000000`27cefe20 00000000`781337d7 mfc80u!_AfxThreadEntry(void * pParam = 0x00000000`23e01f80)+0x101
    00000000`27ceff20 00000000`78133894 msvcr80!_callthreadstartex(void)+0x17
    00000000`27ceff50 00000000`77d6b71a msvcr80!_threadstartex(void * ptd = 0x00000000`77d6b6e0)+0x84
    00000000`27ceff80 00000000`00000000 kernel32!BaseThreadStart(<function> * lpStartAddress = 0x00000000`00000000, void * lpParameter = 0x00000000`00000000)+0x3a
    First, itu2019s interesting to note that the destination pointer does not look to be valid; the call to msvcr80!memmove_s comes directly from crxf_pdf!UXFInitializeW (there are no u201Chiddenu201D calls in the middle):
    0:076> ln 00000000`41d69db4
    (00000000`41d68580)   crxf_pdf!UXFInitializeW+0x1834   |  (00000000`41d6b1b0)   crxf_pdf!UXFGetExportFormatsExW
    The exception (an Access Violation) is actually thrown in msvcr80 while it is trying to copy the memory as a result of the move call:
    0:076> .exr -1
    ExceptionAddress: 000000007814e38c (msvcr80!memcpy+0x00000000000001ec)
       ExceptionCode: c0000005 (Access violation)
      ExceptionFlags: 00000000
    NumberParameters: 2
       Parameter[0]: 0000000000000001
       Parameter[1]: 000000002c78b280
    Attempt to write to address 000000002c78b280
    Also looking at the thread registers confirms that the memory address is not valid:
    0:076> r
    rax=0000000000000009 rbx=0000000000000413 rcx=000000002c78b280
    rdx=ffffffffff9329f0 rsi=0000000000000000 rdi=0000000000000002
    rip=000000007814e38c rsp=0000000027ceec88 rbp=0000000041dd42b0
    r8=0000000005500dc0  r9=0000000005500dc4 r10=000000002728a4c0
    r11=000000002728a4c0 r12=0000000041dd42b0 r13=0000000000000001
    r14=000000002728a4c0 r15=000000002c78b284
    iopl=0         nv up ei pl nz na po nc
    cs=0033  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010204
    msvcr80!memcpy+0x1ec:
    00000000`7814e38c 8901            mov     dword ptr [rcx],eax ds:00000000`2c78b280=????????
    Unfortunately without the private symbols we cannot see what that memory belongs to.
    Anyway since I have access to all Microsoft private symbols, the fact that I cannot find this specific one I think means this is part of the SAP components. I think we can conclude the problem originates from the crxf_pdf.dll and manifests itself in msvcr80.dll because of some wrong parameter passed into that call.
    All help would be very much appreciated.
    Many Thanks,
    Thomas

    Hi Thomas,
    Since you have RAS available use this code and test again:
    private void ExportToPDFRAS_Click(object sender, EventArgs e)
        //CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
        ISCDReportClientDocument rcd;
        //rpt.Load("c:
    Reports
    Group.rpt");
        rcd = rptClientDoc;
        // Declare a PrintOutputController to allow documents to be exported to PDF
        PrintOutputController rasPrintOutputController;
        CrReportExportFormatEnum rasReportExportFormat;
        CrystalDecisions.Shared.DiskFileDestinationOptions diskOpts = CrystalDecisions.Shared.ExportOptions.CreateDiskFileDestinationOptions();
        diskOpts.DiskFileName = "c:
    reports
    reports1.pdf";
        // Set the CrReportExportFormatEnum to export the report as a PDF file.
        rasReportExportFormat = CrReportExportFormatEnum.crReportExportFormatPDF;
        rasPrintOutputController = rcd.PrintOutputController;
        // Use the Export() method of the PrintOutputController to export the report to a ByteArray.
        ByteArray tempByteArray = rasPrintOutputController.Export(rasReportExportFormat, 0);
        Byte[] byteStreamOutput = tempByteArray.ByteArray;
        System.IO.Stream oStream;
        byte[] byteArray = null;
        oStream = rpt.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
        byteArray = new byte[oStream.Length];
        oStream.Read(byteArray, 0, Convert.ToInt32(oStream.Length - 1));
        // this is used to verify the file so I saved it to disk
        System.IO.File.Create(diskOpts.DiskFileName, Convert.ToInt32(oStream.Length - 1)).Close();
        System.IO.File.OpenWrite(diskOpts.DiskFileName).Write(byteArray, 0, Convert.ToInt32(oStream.Length - 1));
        System.IO.File.SetAttributes(diskOpts.DiskFileName, System.IO.FileAttributes.Directory);
        oStream.Close();
    CR requires contiguous memory space so for large reports IIS may not be able to handle cleaning up it's memory fragmentation when objects are freed up. It's a common problem with Java app's also, Java doesn't have a good memory manager either.
    Because of the lack of ability to pass files through Forums I suggest you purchase a support case if you don't have a Support Contract and work with a Support engineer here to debug the problem. We can get the PDB's for those files to you if that helps MS determine what their issue is...
    Thanks
    Don

  • How do I use auto-form recognition to create PDF forms in Acrobat XI?

    I used to use Acrobat 9 to create PDF forms that would allow me to fill in text into the fields that were created.  Acrobat XI seems to have changed the way this function is performed.  Previously, I could run an auto form recognition wizard, do some minor tweaking, and be done.  Now, when I attempt to follow the process in Acrobat XI, I get the following message that pops up:  "No new form field annotations were detected.", and no fields get created.  I could do this manually, but the process of doing so is very clunky and cumbersome.  Once I create a new text field, I must then go back and resize it.  This would not be a problem if I was only working with a few fields on a single page, but I have a six page document with multiple fields to create (text fields, check box fields, etc.).  Perhaps I'm missing something, but there seems to be no simple way to do this anymore.  It's making me want to just install Acrobat 9, so that I will have back the feature that I used to have.  I'm using Acrobat XI on Mac, but I'm assuming the function should be the same in Windows.  I can use Preview on the Mac to simply type in the text that I need, but I was hoping to pass along the PDF so that others can use it as well.  This is not just a one time thing.

    There are no APIs for C# and external applications for this conversion.  There is however an API for Acrobat plugins to perform this operation.   So, if necessary, you could write a custom plugin (that calls the API you need) and expose that via some form of IPC to your C# app.

  • Looking for a PDF app for iPad

    Hi,
    I'm sure I'm not the only one who's thought of this so I'm a believer that someone has created an app to help me and I can't find it!
    Pretty much, I'm looking for an app that will allow me to edit PDF's on my ipad and then send it (Via WiFi or Bluetooth) to my laptop.
    For example:
    Drawing a graph on my ipad, with detailed information, sending that to my macbook and then adding/inserting it to my PDF file on my laptop
    (Like getting a notification on my mac, loading it, draging it to my pdf, and vola!)
    If there is such a thing can someone help me out (If not feel free to take my idea and makes some money off of it, just let me know that you did!)
    Thanks

    Hey there
    "pdf creator" for iPad works flawlessly for me working with pdf files
    It takes care of all my needs
    I'm not sure about sending via Wifi or Bluetooth but I send them via e- mail all the time
    Possibly it could handle your needs as well
    Just type it into the App Store search field and the first one that comes up is the one I use
    Jump on over there and read up on it before buying and see if it will help you 
    Hope this helps
    Regards

  • Having difficulty creating pdf from XML data source

    I have a 'rpt' file built with a classic install of Crystal 10, using xml as a data source. I have tried using both ADO.NET(XML) connection and ODBC CR ODBCXML Driver 4.20.
    The rpt file was built on Windows2000 NT platform. The report runs, and displays data from the sample xml file in the preview tab.
    I am attempting to feed xml data into the rpt file with the intent to create pdf formatted output. I am using java with the Crystaldecisions packages. I am running this app out of an Apache server on an Ubuntu VM Hardy Heron release. This does not have any version of Crystal Reports installed on it.
    I have followed the examples and I am comfortable that I have the correct package imports, I am able to open the rpt file, and convert both the xml and xsd to byte arrays. When I issue the command
    reportClientDocument.getDatabaseController().setDataSource(xmlDataSet, '', '')
    I get the response
    Cannot find corresponding table information in the XML file
    Set data source failed: The table 'criminal_case' could not be found.
    Request failed and JRC Command failed to be undone
    JRCAgent1 detected an exception: The table 'criminal_case' could not be found.
    at com.crystaldecisions.reports.reportdefinition.datainterface.g.a(Unknown Source)
    The xsd does validate the xml which contains a noNamespaceSchemaLocation pointer to the xsd.
    The xml is the same data that was used to design the report on the NT box. This means that I see the same elements being byte streamed as were used to create the rpt file.
    Is this as simple as I am running my webserver on Linux? I do see the connection attribute properties reference a Database DLL that is clearly windows based. What can I do?

    So why develop a report if there is no data? I can only think that you have a bunch of static text, maybe an instruction page you want to publish? If so, you still need a data source, it can be a dummy source
    <?xml version="1.0"?>
    <ROOT/>
    ie no data per se. BIP needs a source even if there is not data to merge.
    Cheers
    Tim

  • Create PDF from two files in sub folder automation

    I am looking to create an automation tool that does the following to help save time (the current process takes about 20 min):
    First, take two specific files (The first page is a single worksheet excel file that is fitted to one page.  The second is a word document.)  in a user defined location and combine them into one document.  Currently this is done manually through Acrobat 8 via the Create PDF function for each file then the Combine PDF function.
    Second, I would like to have the Bookmark and Attachment pane set for initial view, but there is not a preset option for this.  Is this even possible?  Currently, I set the initial view to bookmarks and page, and include a not one the first page on how to open the attachment pane.
    Third, all external links to documents, via hyperlinks, are added as attachements and the links are changed to point to the attachment so that all information is contained within one document.
    Lastly, this newly created document is posted to an intranet location.
    Any help in part or whole would be great.
    NOTE:  All code must be included as an add-in to Acrobat as this is within a corporate environment and server side scripts are not allowed.

    I have created the following script as a start to trying to figure this out, but I am getting unexpected results.  When I run this script, I get the two files, Temp and Combined.  The Temp file is, as expected, a pdf version of the last file in the array, but the Combined file is where the problem is.  With the Combined file, I have one blank page, then my single worksheet from the workbook, and then only the first page of the word document which is 26 pages.  Any idea what I am doing wrong?
    In addition, is there a way to prompt the user to select the filepath through a Windows Explorer interface?
    Current code:
    var filepath = "/c/filepath/"
    // Create a new PDF document for Profile:
    doc = app.newDoc();
    doc.saveAs({ cPath: filepath + "Temp.pdf" });
    doc.closeDoc(true);
    doc = app.openDoc({cPath: filepath + "Temp.pdf" })
    // List of files of different extensions
    aFiles = new Array( "Doc1.xls", "Doc1.doc");
    for ( var i=0; i < aFiles.length; i++) {
    // Open and convert the document
    newDoc = app.openDoc({
    oDoc: doc,
    cPath: aFiles[i],
    bUseConv: true
    // Save the new PDF file to a temp folder
    newDoc.saveAs({ cPath: filepath + "Combined.pdf" });
    // Close it without notice
    newDoc.closeDoc(true);
    // Now insert that PDF file just saved to the end of the first document
    doc.insertPages ({
    nPage: doc.numPages-1,
    cPath: filepath + "Combined.pdf",
    nStart: 0

  • Can't create pdf files v10.0

    I have computer with Windows 7 64-bit installed.  I was using adobe 9.X and was able to create pdf from a variety of sources.
    I installed by Acrobat 10.0 Pro and performed all of the updates for windows, etc.  I can create pdfs from Office 2010 and some other applications.
    When I print from an internally developed application to the pdf printer, it shows it in the queue and then it disappears without creating anything. 
    Before the upgrade to 10.0 the following would happen.
    a) print preview dialog would show up
    b) Click the print button and a dialog would appear and ask for the file name.
    c) The document would be generated.
    Now,
    a) print preview dialog would show up
    b) The dialog asking for a file name does NOT appear.
    c) The document appears in the print queue for a second, without a filename and then disappears.  Nothing is created.
    Work around,
    a) print preview dialog would show up
    b) select "print to file" to create a prn file.
    c) prn file is created
    d) right click on prn file and select "convert to adobe pdf"
    e) pdf file is created.
     The pdf file has images, but I do not see any reason for the change in behavior.
    Again everything work fine with adobe 9.X.   I have changed numerous setting without any solutions to date.
    Any help would be appreciated to avoid the work around.
    Stephen

    Did you ever find a solution to your problem?  We have an old Power Builder app that is experiencing the exact same behavior.
    I installed by Acrobat 10.0 Pro and performed all of the updates for windows, etc.  I can create pdfs from Office 2010 and some other applications.
    When I print from an internally developed application to the pdf printer, it shows it in the queue and then it disappears without creating anything. 
    Before the upgrade to 10.0 the following would happen.
    a) print preview dialog would show up
    b) Click the print button and a dialog would appear and ask for the file name.
    c) The document would be generated.
    Now,
    a) print preview dialog would show up
    b) The dialog asking for a file name does NOT appear.
    c) The document appears in the print queue for a second, without a filename and then disappears.  Nothing is created.

  • Does Adobe Reader for iOS have the ability to open inbedded links to additional PDF docs?  If not, then what would be the best way to use these already created PDF's?

    Does Adobe Reader for iOS have the ability to open inbedded links created with Acrobat Standard to additional PDF docs?  If not, then what would be the best way to use these already created PDF's on an I Pad?

    driddy61,
    As of June 2014, none of the Adobe Reader mobile products support the hyperlink action for opening a separate PDF document.
    Adobe Reader for iOS
    Adobe Reader for Android
    Adobe Reader Touch for Windows 8
    In addition, the Reader mobile products do not open multiple windows/documents simultaneously, which would make the navigation between PDF documents nearly impossible. (Once a hyperlink takes you to a different PDF document, you have no way to go back to the original PDF document.)
    The only Adobe Reader product that fulfills your department's requirements is Adobe Reader XI (mostly for Windows/Mac desktop/laptop computers).  Acrobat Pro and Standard are paid products.
    Because you are in search of a less expensive device for your department, you could get a Windows tablet instead of a Windows desktop/laptop computer. Microsoft Surface Pro (that you've mentioned in your previous reply) is just one example.  You can also find other less expensive Windows tablets.
    Tablets
    However, please keep in mind that there are two different types of Windows tablets running two different operating systems.
    (a) A Windows tablet with an Intel-based processor running Windows 8.1 Pro
    Example: Surface Pro 3
    You can install and run traditional desktop apps (e.g. Adobe Reader XI) and new Windows Store apps ("Modern" or "Metro-style" apps).
    (b) A Windows tablet with an ARM-based processor running Windows RT 8.1
    Example: Surface 2
    You can only install and run Windows Store apps (e.g. Adobe Reader Touch) but not traditional desktop apps like Adobe Reader XI.
    In general, type (b) tablets are more affordable than type (a) tablets.  However, if you want to run Adobe Reader XI, you do need to check the technical specification of each tablet and make sure the following conditions are met.
    Processor: Intel
    Operating system:  Windows 8/8.1 or Windows 8/8.1 Pro, not RT
    Hope this helps you choose the right device for your department.  Please let us know if you have any questions about system requirements or supported features in the Adobe Reader products.

  • Can't create PDF from MS word 2007 Doc

    I am using CS3 Acrobat Pro 8.2 and I can't get a Word doc to PDF.  It starts but then just stops at about 10%.  I have tried importing from Acrobat and just get an error message stating "An unexpected error occurred. PDFMaker was unable to produce the Adobe PDF."
    Anyone have any ideas as to what may be the problem?

    Bill, when using Word or any other MS office app, the process begins the conversion then just stops about 10-15% of the way and the process window disappears.  No error message, nothing.  It just stops.  Now, I can save items as a "Quick and Simple PDF" but not as a "Fully functional PDF" when saving from Word.  So I have narrowed it down that far.  The screen shot below was created in Word and saved as a Quick and Simple PDF from Word.
    When trying to use the Create PDF function from AA, I get an unexpected error message.

  • Acrobat 9 Quits When Create PDF from Scanner Selected

    Hi. I wonder if anyone can advise please.
    I have recently installed Acrobat 9 on my MacBook Pro and have plenty of RAM. However, I can "Create PDF from Scanner" just the once. After that, Acrobat quits when I select Scan or quits if I cancel the scan.
    I have tried the following:
    1. Troubleshoot System Errors & Freezes
    2. New User account
    3. Recreated Preferences
    4. Booted from separate disk
    5. Repaired disk permissions
    6. Have no third party plug-ins installed
    7. Have run Repair Acrobat
    8. Changed Universal Access
    9. Defragmented disk & repaired files
    10. Safe Boot and reinstall Acrobat
    Nothing has worked except when I clean install I can scan through Acrobat once.
    I can scan from the scanner software - Lexmark 4850 - with a jpeg straight to Acrobat but want to try to solve the issue of scanning straight from the app.
    Thanks for your help people.
    Regards
    Paul

    After I discovered my problem of quitting after completing the scan of the first side of a 2-sided document and decided to go to Adobe for help, I should have known I was in real trouble after following their instructions for locating the Acrobat serial number. After bringing up the splash screen and clicking on it, instead of seeing the number the splash screen disappeared! So I had no option but to use the phone. Then their help person couldn't give me the serial number- he had to transfer me- and I chose to stay with him for help instead. He decided it was a conflict between the Acrobat & HP software and ended the help session.
    I then did some on-line research and discovered others with the same problem, and came up with the comparison test with the Windows version. Adobe's phone system didn't recognize my Case #, but the second Help person said it worked fine. At that point, I got the feeling that I was in real trouble. After another hour going over the same ground and repeated denials that their software was at fault, the Helper refused my request that they do a Windows comparison test or send me a Windows version to test myself and promised to call me back with results of their "research". That call never came.
    On the third call, again with the Case # unrecognized by the phone system, the Helper was even more unhelpful, probably after reading the record of the first two calls. He insisted on going back to the machine and over the same ground once again, and I ended the call.
    I agree that the on line approach is better, and I may have to make a double call to get the serial number (neither of the two I have, each different on the case or on the CD worked) and try that if my request for a supervisor fails. Fortunately they are so incompetent that they can't track starting over.
    I'm not a programmer, but have lots of varying experience with computers dating back to the first Atari-400. Since your Acrobat uses only the Twain driver component from your scanner software, the first place to look for a problem is in the Acrobat software, especially since the software doesn't run again after the first use without reinstalling, and the scanner continues to perform properly using it's installed software. The Windows comparison test such as Tim Whitfield was able to make, would clearly establish the Mac version of the Acrobat software to be at fault, but would still not resolve our problems. Unfortunately I hold out little hope for either you or I with Adobe, since neither their phone nor the online help has come up with a prior fix. This indicates a bug fix requirement, which for something like this looks to be a relatively long time in coming.

  • Create PDF 1.1 is "incompatible with Firefox 35.0"

    Hi all,
    I'm using Acrobat Pro X and Firefox on Windows 7 x64.  The Create PDF plugin (version 1.1) has been very useful, and has been working fine for a good while, even when Firefox recently upgraded itself to version 35.0.
    But recently my main hard drive started to fail, so I've replaced it and reinstalled all my apps.  But now in Firefox the Create PDF plugin is greyed out, with a note that it's incompatible with this latest version of the browser.  I've tried uninstalling Firefox and rolling back to a previous version where I knew the plugin was working, but it's still greyed out.  I don't know why, nor how to fix it.  (I groan at the thought of having to reinstall my OS and applications all over again.)
    I may have missed it, but I can't find any option on the Adobe site to download an update to the plugin -- assuming one exists that still functions with Firefox, and is available for download.
    Can anyone help resolve this issue, please?

    Yes, Acrobat X is updated to the latest version (10.1.13), but unfortunately the Create PDF plugin isn't actually updated.  It's still version 1.1.
    If other people have a more recent version of the plugin while running Acrobat Pro X, I'd really appreciate hearing how they got it.

  • Adobe v9 on W7 and office 2007. cannot create PDF from MS word using Adobe. But can from Excel, PPT

    Adobe v9 on W7 and office 2007. cannot create PDF from MS word using Adobe. But can from Excel, PPT and other MS office apps. Reinslalled Adobe, updated Office, and Adobe no help! Also I can create a pdf from the MS Word and it is using the Adobe 9. So one would think that's good. No it isn't when you need to combine different files to one big PDF document. Any suggetions? Thank you

    Yes, I’m saying that I can in WORD use “Save As ADOBE pdf” but cannot in ADOBE create a pdf file from a WORD (.doc or .docx) document. While I can from other MS Office apps like Excel and PowerPoint.
    I understand I can use “work around” and save doc in WORD as pdf then compile all files needed (xml, ppt, pdf) in the ADOBE v9. to one big pdf document. But that is not the point of this post.  
    Jarda @ PC+NET Solutions
    Mobile 613-532-7023
    Office  613-385-1268
    <http://www.pcplusnet.net/> www.pcplusnet.net

  • Word v.X no longer printing or creating PDF files (specific to one user)

    As of yesterday I cannot print from Word (v.X 10.0) documents or create PDF files from Word documents.
    I can print by logging out and using a test user ID.
    I can print after a safe restart (which disables many functions).
    I am still able to print and create PDF files from Pages, Firefox and other programs.
    When attempting to create a PDF from a Word file through the Print dialog box, then saving as PDF, I can see the "magnifying glass" image for the PDF briefly on the desktop, then it disappears.
    Apple Care Phone Support refuses to deal with Microsoft issues (even though it appears to be a print command failing within Mac OS steps of the process, and/or a Mac OS-generated and sorted plist file corrupting the process).
    Microsoft no longer supports the software (i.e., any file you are now using ending in .doc is no longer supported).
    Has anyone had a similar problem or an idea about what to do with likely culprit files?

    Sounds like a M$ problem to me.
    Can you save an Excel file as a PDF?
    There are .plist files in user>library>preferences
    that control the last used settings in apps.
    Quit the office app.
    Trash the com.microsoft.word.plist first.
    If that doesn't work trash the com.microsoft.office.plist
    PS What does yesterday have to do with PDFs not working?
    Something change?

Maybe you are looking for

  • How do I make new tabs?

    When I click a link I'd like a new tab to occur instead of the page I'm currently on being replaced with new one.

  • Animanted Menus, Buttons

    Unless I'm missing something it would be great to have sub-menus that fade or slide in and out, as well as fading rollovers on buttons and links. I know there are some tricky workarounds to create similar effects but as far as I can see there's no ea

  • Wie Ebenen ausrichten in Photoshop Elements 4?

    Hallo, ich finde einfach eine Funktion im Photoshop Elements nicht - oder gibt's die gar nicht (kann ich mir eigentlich kaum vorstellen)?? Und zwar möchte ich Ebenen ausrichten. Beispielsweise wenn ich in ein Bild ein anderes, kleineres Bild als Eben

  • Is there any way to uninstall iOS8.3? It's taking up so much space on my phone.

    Is there any way to uninstall iOS 8.3? It's taking up a crazy amount of space on my phone. I keep getting the storage almost full updates, but I have a 32go phone. All my apps and camera Roll oonly use 6gb of storage. Where did the rest of it go?!!

  • [SOLVED] Audio setup troubles with usb headphones and built-in sound

    Hello, I Just started using Arch about a month ago after going through many Debian and Ubuntu variants.  After all my frustrations with apt pinning to get working 10bit video playback, only to have everything else uninstalled by crappy dependency che