All I want to do is save in PDF format!

Read all your comments. Right, absolutely stupid.

All I want to do is save in PDF, I don't want to send a cloud or anywhere else outside of my computer. I can convert a PDFno problem but do not get the option to save?

Cannot find where to cancel the subscription to them.

Hi debbypq,

When you convert a file using the ExportPDF online service, it is automatically saved in your online account. You can download it to your computer by clicking on the tabs of files when you are connected to https://cloud.acrobat.com/files, by selecting the file, then click Download.

If you decide you want to cancel your subscription, please see cancel your subscription or membership. Acrobat, Acrobat.com online services.

Best,

Sara

Tags: Adobe

Similar Questions

  • All I wanted to do was save my trial version of Photoshop, and I think that I just paid $9.99 for some BS Clould creative. How to do what I wanted vs pay for something that I didn't? It is impossible to talk to or e-mail to a human being. I just want to h

    All I wanted to do was save my trial version of Photoshop, and I think that I just paid $9.99 for some BS Clould creative. How to do what I wanted vs pay for something that I didn't? It is impossible to talk to or e-mail to a human being. I just want to have my work in photoshop again like in the demo. Thank you

    Photoshop is part of the collection of product called creative cloud. If you pay $9.99 a month, you have the Creative cloud photography Plan, which lets you run Photoshop and Lightroom until you stop paying. So, you could have what you need - check your receipt.

    Despite the 'cloud' in the name, the apps run locally.

  • Hi, actually I want to save as a PDF labview code to prepare my documentation, it is possible to save in pdf Formate?

    Hi, actually I want to save as a PDF labview code to prepare my documentation, it is possible to save in pdf Formate? Please answer me quickly...

    Thans in advance.

    When you print a VI, you can choose to print documents of the VI and print it to the printer. If you install the PDF printer, it will appear as a selection. PDF Creator is one of the PDF printer free that you could use.

  • How can I fix this error msg? your default printer must support a minimum resolution of 300 x 300 to use the shape tool. I am trying to save in PDF format.

    How can I fix this error msg? your default printer must support a minimum resolution of 300 x 300 to use the shape tool. I am trying to save in PDF format.

    When you have what you want to save the selected PDF file, make sure that you press properties, and set the resolution in the settings.  PDF files themselves have quality settings, (print quality, Web quality etc) then make sure that you have the right to a game if you plan to use the "print" function to save in PDF format.

  • HP 4630: I am wanting to scan several pages in PDF format that I I use a HP4630

    I am wanting to scan several pages in PDF format I can do, but I want to print a copy at the same time? Is this possible.  I use a HP4630?

    Hello

    No, they are two different functions.

    Kind regards.

  • Why are misunderstood paragraphs when I do save as PDF format

    I use 12 FrameMaker and Acrobat Pro XI. When I do a 'Save As PDF' of a book and you select the bookmarks that I want and you organize their hierarchy etc. Acrobat includes formats of paragraphs that I chose not. For example, it seems to include a random selection of table of contents entries, I have doesn't have a selection to include.

    I went back and checked that all the paragraphs are the correct formats, but it continues to be.

    In addition, once I generated the PDF file, PDF settings I chose are not registered correctly. In other words, whenever I do a 'Save as PDF' I select paragraphs formats I want to include in the form of bookmarks again; It seems to have saved some of them, but not all of them.


    Any ideas?

    Bookmark information (i.e. PDF configuration information) are stored with each file/book, so if you have saved the file, these parameters must also be registered. Try using the Format > Document > PDF of installation... ability to define things way th in the book and then save the book. The correct settings are currently maintained the next time that you open the book and the need to create a PDF file?

  • JavaScript to invite the user to save in PDF format

    I make the changes with the code for the file. I want the user to be prompted to save as a file .ai first. I have that down. Now, I'm eager to have the user immediately prompted to save as pdf with only the option optimize for fast web view selected. I think it's an adobe built-in smallest file size.

    The reason for wanting the guest is because I want to save the files in 2 different places.

    Here is my code so far...

    var doc = app.activeDocument;
    // Save as .ai file  
    var fileName = doc.fullName;  
    var thisFile = new File(fileName);
    var saveFile = thisFile.saveDlg();
    doc.saveAs (saveFile);
    
    
    // Save as .pdf file
    var pdfSaveOptions = new PDFSaveOptions();  
    pdfSaveOptions.pDFXStandard=PDFXStandard.PDFXNONE;  
    pdfSaveOptions.compatibility = PDFCompatibility.ACROBAT5;  
    pdfSaveOptions.preserveEditability = false;  
      
    var pdfFile = new File(fileName);  
    doc.saveAs(pdfFile, pdfSaveOptions);
    
    
    
    

    HAVE CS4 Windows 7 64 bit

    the folder structure is already existing?

    If so, things are simple.

    If the name and the number are in the file you could draw that from the entry rather then manual doc to guests.

    (Note that there is no test to check the folders exist etc...)

    var job = prompt("Enter Job Name");
    var num = prompt("Enter Job Number");
    aiFile = "D:\\"+job+"\\"+num+"\\AI\\Schematic.ai"
    pdfFile = "D:\\"+job+"\\"+num+"\\PDF\\Schematic.pdf"
    
    var newaiFile = new File(aiFile);
    var doc = app.activeDocument;
    doc.saveAs (newaiFile);
    
    var pdfOpts = new PDFSaveOptions();
    pdfOpts.pDFXStandard=PDFXStandard.PDFXNONE;
    pdfOpts.compatibility = PDFCompatibility.ACROBAT5;
    pdfOpts.preserveEditability = false;
    var newpdfFile = new File(pdfFile);
    doc.saveAs(newpdfFile, pdfOpts);
    

    If you want the script to create the folders so it is a little more difficult.

    JavaScript will not do that, and you need another work autour.

    something like that...

    if (Folder(qfolder).exists){
    app.activeDocument.saveAs( saveName, saveOpts );
    }else{
               //alert("about to try bat");
               batpath= 'call "C:\\Adobe Scripts\\MakeDirectory.bat"';
                battemp = new File("C:\\Adobe Scripts\\tempBAT.bat");
                battemp.open("w");
                battemp.writeln(batpath + " " + qfolder);
                battemp.close();
                battemp.execute();
             //alert("Had to Create Folder, Please press OK to continue...");
                $.setTimeout = function(func, time) {
                        $.sleep(time);
                        func();
                };
             $.setTimeout(function(){ app.activeDocument.saveAs( saveName, saveOpts )},200);
             }
    }
    

    the MakeDirectory.bat is just:

    ECHO OFF
    CLS
    
    IF %1=="" GOTO BLANK
    
    SET savepath=%*
    MKDIR %savepath%
    GOTO FINISH
    
    :Blank
    ECHO No Folder provided
    GOTO FINISH
    
    :FINISH
    

    the tempBat.bat is used to call the MakeDirectory.bat with the name of the file as an argument.

  • LaserJet M1212nf MFP: laserjet MFP won't allow scans to save in pdf format

    scanner does not provide an option to save as .pdf scans

    You analyze with the help of scanning worms or any other application?

    Try scanning by Windwos scan below, it provides PDF scan capabilities:

    https://www.Microsoft.com/en-us/store/p/Windows-scan/9wzdncrfj3pv

  • I want to transfer the manuals in pdf format from my Air iPad to my iMac

    I am running iOS 9.2.1 on my IPad and downloaded several books to iBooks. I want to have these books in iBooks on my iMac. I want to can I transfer some of them to my iPhone as well. I am El Capitan running on my iMac

    Open iBooks on your Mac. Sign in with your Apple ID account You will see all your purchased books. Download the books you want.

  • trying to save in pdf format (or print to pdf) an individual page of a multi page pdf in reader DC

    How to save a single page of a multi page pdf file pdf file? _ I used to be able to help to "print to PDF"

    Not with the player; you will need Acrobat for that.

  • Are not sent to the printer by default, asks me to save in PDF format

    Everytime I go to print a Web page, the print menu comes upward and instead list the default printer first, he asks me for sure the Web page in PDF format. How can I get this back to where it displays the default printer as the only option I have?

    SS

    Is your printer but simply not listed first?  If it isn't...

    Most often when a device does not work, it is because the driver is damaged. Re-install a new copy should help

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly? SignedIn = 1

  • I want my interactive report output in pdf format

    Hello

    What is the best way to make pdf after the application of filters

    1 I use apex 5 universal theme.

    Apex 5 to support this new feature

    2. What is the best freeware plugin to achieve this

    Information appreciated

    Thank you

    Hi pauljohny100,

    pauljohny100 wrote:

    Thanks for the tip. Sorry for the late reply.

    1 I have managed to get the pdf via classic report report but not through interactive report. It is for this option, you mentioned.
    You must configure a server 'print' in the Instance Oracle APEX settings to use the PDF format to print interactive report.

    2 do not know if I can use apex_ir.get_report send out put it to jasper and get the result.
    3 I tried to use as_pdf2 plugin from Anton Scheffer.

    Again, it works in classic report. I am unable to get the report filtered ir to download in pdf format.

    So in the meantime if you have any link on the print server for interactive report let me know. I need to know where I can specify

    I need the PDF as an attachment.

    You can use "Oracle REST Data Services" as an option "print server".

    With ADR integrated to your instance of APEX, you could get the PDF blob from the server to print using APEX_UTIL. GET_PRINT_DOCUMENT API.

    Reference: Re: what value for p_print_server when you use the Rest Data Services as a print server?

    And then you can send it by using the APEX_MAIL API.

    Reference: https://oracleapexbynandinithakur.wordpress.com/2012/06/04/report-as-attachment-in-email-notification-in-oracle-apex/

    Kind regards

    Kiran

  • Save as PDF/Google Cloud Print

    I have 2 shelves Samsung Galaxy (tab 2 and tab 4), 4.1.2 Android running one, and 4.4.2 running.  Both have Adobe Acrobat Reader version 16.2. Both are signed to the same Google account.

    On the most recent tablet, select print gives me a dialog box with the option to save in PDF format.

    On the older tablet, selecting printing takes me to a login page for Google Cloud Print.

    I can't figure how to get rid of the Google Cloud Print option. Google Cloud Print (the application) is not installed on the tablet. I re-installed Adobe and is about to format the tablet to see if that changes.

    I want to just save as PDF locally on the two tablets.

    Hello

    Registration as a PDF for Google Cloud Print option is only available for Android versions 4.4 and above. Layout of the tablet or reinstall the application would not help and you will lose important data. I would advise against it. All annotated with Adobe Acrobat files are saved in their original location. You try to save in a different location using 'Save As PDF '?

    Thank you

    Adobe Acrobat team

  • Unable to save a PDF file.

    I can't save any PDF format that come as attachments. When I click on "Save as" in the opened file, nothing happens. Right click gives a list of options, but savings isn't one of them. I can save only a PDF coming for download by moving the file from the downloaded file in the destination folder. Yet once, by clicking on "save under" does nothing. I have Windows 7 and Adobe Reader XI and I have tried to reinstall Adobe Reader. All solutions?

    How about using save attachments to your e-mail client?

  • Cannot save a PDF file in PS CS5 - used file

    I have a new computer and the new CS5 Suite.  Running Windows 7, x 64 version.  If I have a file (any type) with the changes or without, I can't save in PDF format unless I preserve PS edition.  If I try to save without preserving it brings back "the file is opened or is being used by another program...." "and creates a file ~ *.tmp.  The file .tmp remains active until I quit PS (know because I tried to move the folder).

    I tried to rename the file, moving into different folders, from network HD, no luck. My only workaround is to preserve PS editing on all files.  Is this something new with CS5?

    Nothing new in CS5, but it seems that your files are being indexed or W7 creates thumbnails / previews icon for them. Try to turn off this behavior in general view settings to explore and see if that makes a difference.

    Mylenium

Maybe you are looking for

  • Advice to synchronize two computers on one account

    I want to omit a certain user (account) when I sync my new laptop... so it only fill with all financial data (for example) my Bill based pay the user account on the new computer. Anyway to do in icloud using a single account? Or dropbox is better for

  • Extension memory on the Satellite 2410

    Hello I intend to expand the memory of my Satellite 2410 601. It has 256 MB DDR at the present time. I plan on using a memory module 256 more to extend the total memory to 512 MB. I want to know is whether I can use one of the DDR memory module avail

  • Qosmio F30 - green blocks and the white vertical dotted lines

    I turn it on and it starts to initialize. However, I get green blocks on the screen and the dotted white then wertical, then a black screen. Can someone please help with this?

  • Re: Serial number down would work with the other Windows Vista operating system

    First of all sorry for my English.I have one question. My hard drive is broken with my recovery partition.If I download windows vista and install the system with my original serial number on the laptop, this will work or should I activate it after in

  • Impossible to upgrade to media player 11 xp

    I try to install Media Player 10 for XP version 11. When I check the updates via the Media Player it says has only an upgrade to version 10, which he is already upgraded. When I go to the download page for Microsoft to Media Player 11, it requires a