Getting started with Adobe PDF Pack

I just subscribed to Adobe PDF Pack.  I thought I would be downloading software but now realise I purchased on on-line subscription.  How do I actually access the service?  I have a number of files I wish to combine - now what do I do?
A

Hi hilltop58,
Yes, Adobe PDF Pack is an online service.
You May logon to https://cloud.acrobat.com/convertpdf with your Adobe id and password.
Regards,
Florence

Similar Messages

  • How do I edit a PDF file with Adobe PDF Pack?

    How do I edit a PDF file with Adobe PDF Pack?

    Well, you don't. Editing a PDF is a difficult and fraught business even with the most expensive software.
    But PDF Pack lets you export to Word; then often you can edit in Word. Now you can make a new PDF. It might look like the original, or it might not. If small changes matter you might be out of luck. ON NO ACCOUNT USE THIS FOR GOVERNMENT FORMS.

  • What comes with Adobe PDF pack? I don't know what I paid 89.99 for because nothing works.

    Please answer my question. I was charged on December 31st. I don't have any link to download anything, it says my free trial is over....what is going on???

    Hi erikabutbetter,
    Adobe PDF Pack is an online service, so there's nothing to download. You just log on to https://cloud.acrobat.com using your Adobe ID and password. From there, you'll be able to create and combine PDF files, export PDF files to other formats, fill out and sign PDF forms, and send anonymous links to PDF files.  You can also upload files and store them in your Acrobat.com storage.
    The free trial that you mention is for the Acrobat desktop software, which is separate from your subscription. The free trial is valid for 30-days from the first time you start it; after those 30 days you need to license the software (by purchasing it).
    Best,
    Sara

  • Resizing PDFs with Adobe PDF Pack

    Our office uses Adobe PDF Pack for combining PDFs and conversions. However, when we send reports via email our PDF attachments are too large for the email to be sent.  Is there a way to resize the file using Adobe PDF Pack, or do we need to buy Adobe Acrobat (I know using Adobe Acrobat to resize you do the PDF Optimizer)?
    Thank you in advance.

    Yes, you'll need Acrobat Pro. (which has the optimizer) to reduce the file size of a PDF.

  • Can I rearrange pages when I merge files with Adobe PDF Pack?

    Hi
    Have purchased PDF pack as an upgrade, but not happy with what it does as doesn't seem to be any better than what I had before
    When you merge documents there doesn't appear to be any tool to rearrange the order or to delete any pages you don't want, which leaves it very limited
    Perhaps I'm missing something, but without this feature it's no better than what I had before
    Can anyone either help or perhaps someone from Adobe can contact me to discuss a refund
    Thanks

    Hi mdibmead,
    I'm sorry that PDF Pack isn't meeting your needs. It's true that to alter PDF pages in any way, you need Acrobat. PDF Pack lets you convert files to and from PDF and combine files to PDF, but not edit PDFs.
    I would be happy to take care of a cancelation and refund for you. Please let me know how you'd like me to proceed.
    Best,
    Sara

  • Getting started with Adobe forms?

    Hi,
    I'm an  ABAP consultant and worked extensively on scripts and smartforms. I got an opportunity to work on Adobe forms, so can anybody tell me about prerequisites to learn adobe forms. Is it necessary to learn Java, Webdynpro...etc?
    Can anybody send tutorials on these forms?
    regards,
    Ravi.

    HI,
    t.code SFP.
    definition:
    Interactive Forms based on Adobe software is SAP's new solution for forms development. Its first release has the focus on interactive use of forms. High-volume printing is supported in principle, but - being a new solution - the performance has not yet reached the same level as Smart Forms or SAPscript, two established solutions that had years to grow. Interactive Forms is the only solution that will continue to be enhanced with new features, while SAPscript and Smart Forms will be supported without limitations.
    When (or if) to move to Interactive Forms depends on your requirements. For interactive forms usage, i.e. the new functions, you have no choice, as the existing solutions don't support it. High-volume print scenarios need to be carefully analyzed to see whether your concrete requirements can be met at this point.
    However, it is possible to move to Smart Forms and design your forms in such a way that a migration at any point in the future would be but a small step. Smart Forms offers from Web AS 6.40 a migration wizard to Interactive Forms. Technically, everything can be migrated, but we recommend against things like ABAP program nodes, for example.
    You are not forced to ever go to Interactive Forms if you don't want to. It really depends on whether your client needs any of the new features in Interactive Forms. Also, if they are currently working with JetForms, they could enquire with Adobe directly what migration path they offer to the joint solution.
    go thru this links
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/4a94696de6429cada345c12098b009/frameset.htm
    example
    To get an overview idea about Adobe forms ,
    Using SFP , first you need to create a interface . in interface you can declare the import and export parameters and also the declaration part, coding etc : This is nothing but similar to Function module interface.
    And now we have to create the Form which is interactive. Create the form and enter the interface name which you have created in first step, so that the parameters , declarations of fields etc : will be copied and available in the form layout. So that you can drag and drop these declared fields ( dclared fields of interface ) to the layout.
    Create the context and layout in the form.
    The layout generated can be previewed and saved as PDF output.
    Now we need to integrate the driver program and the PDF form to get the final output as per the requirement.
    On activating and executing the form you will get a function module name just similar to smartforms.
    The driver program needs to call this FM.
    Refer to the below sample code :
    DATA : is_customer TYPE scustom.
    DATA : it_bookings TYPE ty_bookings.
    DATA : iv_image_url TYPE string.
    DATA : iv_sending_country TYPE adrc-country.
    DATA : it_sums TYPE TABLE OF flprice_t.
    DATA : docparams TYPE sfpdocparams.
    DATA : formoutput TYPE fpformoutput.
    DATA : outputparams TYPE sfpoutputparams.
    PARAMETERS : pa_cusid TYPE scustom-id.
    SELECT SINGLE * FROM scustom INTO is_customer
    WHERE id = pa_cusid.
    SELECT * FROM sbook
    INTO CORRESPONDING FIELDS OF TABLE it_bookings
    WHERE customid = pa_cusid.
    outputparams-nodialog = 'X'.
    outputparams-getpdf = 'X'.
    *outputparams-adstrlevel = '02'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    docparams-langu = 'E'.
    docparams-country = 'US'.
    docparams-fillable = 'X'.
    CALL FUNCTION '/1BCDWB/SM00000043'
    EXPORTING
    /1bcdwb/docparams = docparams
    is_customer = is_customer
    it_bookings = it_bookings
    IV_IMAGE_URL =
    iv_sending_country = 'US'
    IT_SUMS =
    IMPORTING
    /1bcdwb/formoutput = formoutput
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    IMPORTING
    E_RESULT =
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Reward points for useful Answers
    Regards
    PC

  • Can I "Print to PDF" with Adobe PDF Pack?

    ONe of the reasons I purchased PDF pack is because it says that I can "print to PDF" which is said to mean that when I go to print something that one of my choices of printer besides my HP should be Adobe. I don't see anything in my drop down of printers that wasn't there before I purchased the PDF PACK. I have rebooted and everything and still nothing is there. Can you help?

    Hi geolog12 and remedy111,
    If you're on Windows, you can use the CreatePDF Desktop Printer to "print" to PDF from almost any application. You'll find a link to the installer on the Create PDF page when you're logged in to the PDF Pack account.
    Here are the instructions for installing it: http://helpx.adobe.com/acrobat-com/kb/using-pdfpack.html#main_adobePDF_desktop_printer
    Best,
    Sara

  • Mapping your Photos in Lightroom 4 | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Discover how to use the new Lightroom 4 Map module to sort and manage your images based on location information.
    http://adobe.ly/wayJEB

    Jullieanne, The only way that I would want to map images is to publish an app. Do you have any suggestions how to get started?
    Thanks
    David

  • Lightroom 4 - Print the Perfect Image | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Learn how to use the Print module to bring your images into the spotlight and share with clients, friends or family. Also, see the new tools for making custom contact sheets and print packages.
    http://adobe.ly/wqFX7Y

    I love Julieanne Kost’s videos.  The one on the print module did not mention some gotcha’s.  I find this module very frustrating.  I have thousands of pictures of wild horses and decided to print a few pages with photos of the right and left side of the horse to make it easier to identify the many pintos.  I made a grid of 4 x 2 cells on each page and then tried to drag and drop the photos from the film strip.  The first cell filled as expected but when I tried a different photo in the next cell it replaced the first cell’s photo!  I could not figure out what was going on.  I didn’t know you had to move the photos in the film strip to put them in the order I wanted.  I had only used the print module to print single photos and had not used collections before.  After spending a lot of time trying to find out what I was doing wrong I found out you couldn’t drag and drop in the Single image/ contact sheet layout!  This took over an hour.  I tried a different style only to find that the picture package would only use one picture.  Well, the custom package did what I wanted it to do.  Great, so now I needed to print the captions with the names of the horses and spent another hour trying to get that to print only to discover you could only do that in the Single image/ Contact sheet!  In that layout you can only have cells the same size with no mixing of portrait and landscape orientation!  Not only that, I only had a picture of one side of a few horses and couldn’t skip a cell in that layout so had to go to Photoshop and create a blank photo to use as a place holder.   I had to fill the bottom of a page with blank photos to get a new page if it didn’t want pictures in all the cells of a particular page.  This all caused me hours of frustration and pounding my head on the desk.  I tried going to the book module but couldn’t create an 8 photos per page like in the contact sheet layout. 
    Maybe you could tell us why we aren’t allowed to print captions in all of the layout styles and why we can’t drag and drop in all the layout styles in any order we want.  Why the Custom Layout style isn’t the only one.  Why all the templates supplied are not using the Custom Layout package.  Why is this so hard? 
    Thank you  -- Eric Hill

  • Lightroom 4 - Importing and Organizing Your Images | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Discover the most efficient method for downloading images into Lightroom and organizing them. Quickly import and manage your photo collection in a library that makes organizing, finding and editing your photos easy.
    http://adobe.ly/zQmi8t

    Ms. Kost,
    I am an event photographer and new to Lightroom.  I just got Lightroom 4 and am just starting to watch your videos.  This first one demonstrates your great step by step teaching method that's very informative and I'll be watching more.
    As an event shooter, I usually shoot with two cameras, each with a different lens.  I would very much like Lightroom to be able to SORT the files from both cameras during the Import phase and order them by the TIME that the shots were taken, or Chronologically, rather than to sort each group of files from each camera individually.  Since I do my editing and presenting in chronological order, I would like them sorted as if I shot them all with one camera.  My current method is to import to Lightroom after first using Bridge to import to the main SSD drive on my Macbook Pro, although I can change this method if need be.
    Is this possible? I didn't notice this option explained in this video if it exists.
    Thanks in advance!

  • Lightroom 5 - Importing Your Images | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Discover how to quickly download and import your images into Lightroom. Then, decide which method is the most efficient for your workflow.
    http://adobe.ly/11iaqIz

    I don't have a card slot on my Macbook pro  it's about 4-5 years old. I have a Canon EOS 500. When i want to import i use a cable that plugs from the camera into a USB port downloading in either iPhoto o Photoshop. Can I do this also with lightroom or do I need to get a card adapter?
    Thanks, Patrick

  • Lightroom 5 - Print the Perfect Image | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Learn how to use the Print module to bring your images into the spotlight and share with clients, friends or family.
    http://adobe.ly/12t2aN8

    Can you do Proof for printing in LR5 like in PS?

  • Lightroom 5 - Creating and Publishing a Book | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Create and publish your own book using the Book module in Lightroom. Discover how to quickly add text and images, change layouts and customize templates.
    http://adobe.ly/12t1S9f

    You are one of the best presenters. Easy to keep track with what you explain.Thanks

  • Lightroom 4 - Adding Special Effects | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Discover the best way to convert images to black and white, as well as add tonal overlays, edge effects, selective coloring and film grain textures.
    http://adobe.ly/zk3tdF

    I was able to get it loaded. This was a great video. I love the way you explain stuff. Very professional.
    I just downloaded LR4 for trial. I have CS5, and have been using CS for a while (CS2,3 and 5). I have a couple of questions for you:
    1. I also have Picasa for organizing photos. Do you see the need to have both Picasa and LR?
    2. What is the advantages of LR when you have CS? For example, I have Curve Plugins in CS5 that I would like to use in LR. I don't see a way to do that. So I end up having to do further editing in CS5. LR seems to add tasks to my workflow. Maybe I need to learn more. What are you thoughts?

  • Lightroom 4 - Publish a Slideshow | Getting Started with Adobe Photoshop Lightroom 4 | Adobe TV

    Learn how to create, render and publish a slideshow with music by sequencing your images to tell the perfect story.
    http://adobe.ly/yTGMXb

    The fit to music in the slideshow module does not work.  It never worked for any versions of Lightroom and still has not been fixed within Lightroom 4.  Please put your engineers on this and fix this bug.

Maybe you are looking for

  • Error that widows cant find solution for and wont even open firefox

    earlier today firefox was working fine but now when i click it the only thing that happens is a pop up saying that firefox is not responding and that it must be closed and the same thing is now happeng with internet explorer so i cant even try to del

  • Field Selection for 543 Movement type

    Hi Experts, While Posting Goods Receipt against Sub contract PO to receive the Processed Material (FG/SFG) by 101 from Job Worker,system automatically will trigger the Raw which needs to Consume by 543 mvt type. Users are overwritting the Raw Materia

  • FM for BP

    hi all,           when creating or changing a BP , what are the FM modules that would give me BP runtime information Regards.

  • Problem during transport of transaction variant.

    Hi Experts, Can any one tell me, the creation of transaction variant is client specific or not???? As because a new transaction variant created through transaction code 'SHD0' is not getting transported properly from one client to another client. Kin

  • Texts being sent as iMessages

    For some strange reason, some of my texts are being sent as iMessages. Anyone know why?