Help with PDF Expert

So I just downloaded the PDF Expert app. I have a ton of PDF files on my iPad but I can't figure out how to add them to the PDF Expert document folder. The manual has instructions for adding files from everywhere except the iPad you are using. Can someone help?
K

If the PDFs are already on your iPad in other apps then it depends upon what those other apps support as to whether you can copy the PDFs from them to PDF Expert. The copy is initiated from the app that they are currently in, so try selecting one of the apps where you have those PDFs and see if that app has a 'copy' or 'open in' function which will copy them to PDF Expert.
Otherwise you can copy them via your computer's iTunes e.g. use file sharing to copy them out of their current app to your computer, and then from your computer to PDF Expert
File sharing : http://support.apple.com/kb/ht4094
Or you might be able to email them from your current apps and then use 'open in' on the attachment in Mail to open them in PDF Expert - but if there are a lot of PDFs as you imply then this may be slower.

Similar Messages

  • Can I sync FormsCentral with Dropbox, similar to how you can do it with PDF expert on an ipad??

    can I Sync my Adobe formscentral with Dropbox, similar to how you can do it with PDF expert on an ipad??

    Hi,
    No, FormsCentral doesn't provide any integration with other storage services.
    Thanks,
    Josh

  • Need help with PDF/X-1a

    I am beyond frustrated here so I hope someone can help me!!!! Ii have Adobe 8 Standard and I can't find the PDF/X-1a in my distiller. I need this particular preset to upload a book cover. The website won't accept any other format. The only thing I have in my distiller is PDF/A-1b.
    Does anyone know where I can get the correct distiller? Everyone I know with Adobe 8 has the PDF/X-1a in their options and they don't remember having to do anything special to get it.

    Assuming you have Acrobat installed, it would not hurt to verify compliance after the document is created. With the doc open (on my vesion 9) Advanced > Print Production > Preflight > PDF/X Compliance > Verify compliance with PDF/X-1a  hit analyze
    Note that a document must have a Title in the Title box under Document > Properties (ctrl+d) to pass X-1a and, for whatever reason, analyze and fix cannot add this.
    And I'm far from the resident expert here..

  • HELP WITH PDF TO WORD DOC

    pLEASE HELP WITH CONVERTING A PDF REPORT TO A WORD DOC WHERE i CAN MAKE CHANGES AND PRINT A NEW REPORT.

    Hi Christine,
    It looks like you have a subscription to our ExportPDF service. Follow the steps in our Getting Started Guide to convert your PDF to Word: http://forums.adobe.com/docs/DOC-2412
    You should be able to edit your file in Word after the conversion.
    -David

  • Help with pdf tasks

    Hello,
    I am trying to automate a couple of specific tasks with pdf files but I am having some trouble. At my job we are printing files to pdf but afterwards we must go back and edit the pdf files. Basically what we need to do is this (in order):
    1) Rotate the first 'one to three' pages. The first page(s) need to be rotated counterclockwise but it can be 1-3 pages that need this. All we know is that they always appear first. These pages are very similiar in content so I was thinking about making the program search for a keyword common to those pages then rotate it if it finds that keyword. That way we can ensure that its only rotating the pages which need to be rotated.
    2) The last 3 pages of the document need to be moved to the top. These documents vary in number of pages so I cant just tell the program to move certain pages numbers to the top. All we know is that its always the last 3 pages of any document that need to be moved to the top. Also, just for clarification is another way to reorder pages in Acrobat besides dragging them with the mouse?
    Any input would be greatly appreciated.
    Thanks
    Fazal

    Both of these could be implemented using JavaScript, perhaps using a batch sequence. #2 is easy, and #1 may or may not be possible/reliable based on the actual content of the document.
    For #1, a script is able to loop through the words on a page to search for one or more words. If found, it can look at the position of the word on the page, and if it meets the position criteria, use the setPageRotations document method to rotate the page.
    For #2, just use the movePage document method to move the last three pages.
    If you need help with the code, consider posting in the Acrobat Scripting forum. Include more information for #1 if you do.

  • Help with PDF Generation

    We are currently evaluating LiveCycle ES to potentially convert numerous Pro/E 3D drawings to PDF. Unfortunately, I am having a difficult time finding the proper resources to help achieve this. What we would like the process to do is:
    1) Take a Pro/E file, and apply a forms template
    2) Add an "Exploded View" animation for the 3D drawing (such as what can be generated by Adobe 3D Reviewer)
    3) Expose the "Bill of Material" to the template fields
    4) Save the generated PDF to a defined folder
    5) Perform these steps for a "watched folder" for when new drawings are submitted
    In LiveCycle Workbench, I have been able to read a Pro/E file and apply our template. But I cannot find information on how to achieve the other steps.
    Could somebody please point me to specific resources and/or samples that would help with this? Any help would be very appreciated.
    Thanks!

    Thanks for your reply.
    If I'm understanding you correctly, option 1 probably won't work for this situation, because we're working with existing ProE drawings -- hundreds, if not thousands, of them. So, they don't want to go back and add the exploded view. Unless you're saying that we could use javaScript to generate the exploded view and BOM from the ProE files?
    Do you know of an example (or other resource) that describes either of the options you outlined? Could you explain a little more?
    Thanks again!

  • Help with PDF Javascript calculation involving checkboxes

    Hello Everyone,
    I have a PDF Form, and need help with a calculation.
    For the sake of simplicity, Lets say I have 5 fields. FSA1 and FSA2 are checkboxes. TotalClaimed1 and TotalClaimed2 are text fields which allow only a numerical input.
    The last box, FSA_Total, should add the value from TotalClaimed1 if FSA1 is checked, and it should also add the value from TotalClaimed2 if FSA2 is checked.
    The code is malfunctioning, however. Something is causing it to add to the total every time the box is checked. Its almost like the checking off of the box is what causes the addition.
    It seems like the code is being read as "When the box is checked, add the value to the total", so each time the box gets checked, it adds to the total again.
    and it should be "IF the box is checked, add the value to the total" so if there is a value in the field, and the box is checked, that value is passed on to the total; and if the box is not checked, the value is ignored.
    Can anyone spot what might be causing this? Code is below.
    var claim1 = parseInt(this.getField('TotalClaimed1').value),
        claim2 = parseInt(this.getField('TotalClaimed2').value),
        fsabox = parseInt(this.getField('FSA_Total').value);
    if (this.getField('FSA1').value == 'Yes') {
        fsabox += claim1;
    if (this.getField('FSA2').value == 'Yes') {
        fsabox += claim2;
    event.value = fsabox;
    Thanks
    Thisguy1234

    This is a custom calculation script for FSA_Total, correct? The code is working correctly, it's just not what you want. Assuming this is a custom calculation script in the FSA_Total field, it should be something like:
    var sum = 0;
    var claim1 = parseInt(getField('TotalClaimed1').value, 10),
        claim2 = parseInt(getField('TotalClaimed2').value, 10),
    // Add field values if corresponding check boxes are selected
    if (getField('FSA1').value !== "Off") {
        sum += claim1;
    if (getField('FSA2').value !== "Off") {
        sum += claim2;
    // Set this field value
    event.value = sum;
    Why are you using parseInt, exactly?

  • What is the best fax app to use in conjuction with PDF Expert?

    Using a form in PDF Expert, I need a good fax app to use for faxing the form. Any recomendations?
    efax doesn't seem to work correctly. Jotnot wants you to pay everytime you fax.

    Download Gmail app. itunes.apple.com/us/app/gmail/id422689480?mt=8

  • Help with PDF's in Flash

    I need to make a hyper link to jpegs, and while this is easy
    enough, the images are already in a PDF doc. I would love to not
    have to go page by page and save them out as jpegs. Is it possible
    to link a hyper link to a specific page in a specific PDF ? And if
    not a hyper link is there some other way of clicking on some text
    or something and telling it to go to page 2 of Test.pdf ?
    -Thanks

    I'm totally confused - i think it is your terminology - when
    you say things like "window" - it is
    very hard to tell what you mean. "Window" can refer to so
    many different things. Then you say things
    that popup at first glance can't be seen - even more
    confusing. When you say "when I open the window
    more..." what "window" are we talking about? Are you
    previewing in a browser? Or is this inside the
    DW IDE? Or the Flash IDE?
    It's probably a very simple solution but I can't figure out
    what you are physically looking at, what
    it looks like now, and what it should look like based on your
    workflow.
    sorry - trying to help.
    Chris Georgenes
    Adobe Community Expert
    mudbubble.com
    keyframer.com
    howtocheatinflash.com
    undesirablenumberone wrote:
    > just to stating the obvious, ....i'm a total novice.
    >
    > i'm using the same file from dreamweaver, just renaming
    it....then i change
    > the placeholder to correspond with the new file...then i
    save it and
    > refresh....I notice that when i preview it in flash that
    as a flash item, when
    > the window with the nav bar in it pops up at first
    glance you don't see it, but
    > if i open the window more then the text is there ...but
    still doesn't show up
    > in dreamweaver.......
    >

  • Help with PDF form responses

    Hey there!
    I have two issues with online form data collection and am completely stumped. It's a real struggle to find useful documentation for Acrobat forms!
    #1 - I have created a form uploaded it to Acrobat.com, and have been able to collect test form data. In the local responses portfolio, I'm able to use the 'Update' button to bring the latest form data into the portfolio. But I would like to have a colleague be responsible for monitoring the form data and we're running into problems. He's able to open the portfolio and has full access, however the 'Update' button is greyed out so he is unable to bring in new form data. We've already updated his 'Acrobat.com' username/password in Acrobat preferences to match mine, but still no luck. Any help?
    #2 - Some computers are having issues with electronic submission. My best guess is that this is to do with Acrobat versions, as the issues all seem to come from computers where the form is completed using Acrobat Reader 8. The form was created with Pro 9, and form submission works for both Pro 9 and also Reader 9. Is there something I can do here? (And yes I know that it's a free upgrade to 9, but 8 is still in the official build for our organisation and I don't really have time to wait for them to complete an upgrade!)
    Thanks in advance for any help you can give.
    Jarrod

    Hello Paul,
    Thank you for your reply.
    I use Ipower for my hosting.  I see they use sendmail and the path on the server is - /usr/sbin/sendmail.  Would this work?
    The way I would like this to work would be:
    1) I e-mail the PDF form to the client
    2) Client opens and fills in the form
    3) They hit submit and the form information eventually gets e-mailed to my business e-mail
    I chose to use the HTTP method instead of e-mail because the PDF form says it can not be saved and if the client uses an internet beased e-mail like Yahoo it gets kind of messy.
    But, does the HTTP delivery method make it more difficult since this is not embedded in a website?
    Sorry, I did not realise this would be as involved as it is.  Your help would be greatly appreciated.

  • Livecycle design 8 Help with PDF forms

    I am new to Livecycle 8. I have created a simple PDF form in Livecycle 8 which was orignally an excel form. I set it up with a submit button to submit by email to a designated person. The form is housed on an internal web site for viewers with adobe reader to open and fill out and then submit by email. The goal is for the designated receiver to receive the the same PDF form with the information filled out by the previous viewer. I was successful with the form being emailed to the designated person as long as the peson submitting the form was using adobe professional. If the viewer only has adobe reader, the form would not submit to the designated receiver. Please help? 

    Reader does not allow a local save of the form and data by default. To be able to add the attachment o an email message a local save must occur. You can Reader Extend your form to allow for this. Open th eform in Acrobat Pro. Under the Advanced menu choose the "Extend Features in Adobe Reader". Follow the wizard and save the result PDF as a different name ....I like to put RE in the name so I know it is Reader Extended. Try the new file.
    paul

  • Help with PDF Form Submission

    Hello,
    I am using Live Cycle for the first time.  I have designed a PDF form that my clients will fill out and then send back to me.
    I have a website and thought submitting the form via http would be best but am having a problem with knowing the correct URL an then the server authentication.
    When I try to submit now I get an authorization error.
    Here is the URL I used in LiveCycle - http://watchmymvp.com/profilesubmissions
    This is to a folder a created on the server.
    How do I set this up?
    Thanks

    Hello Paul,
    Thank you for your reply.
    I use Ipower for my hosting.  I see they use sendmail and the path on the server is - /usr/sbin/sendmail.  Would this work?
    The way I would like this to work would be:
    1) I e-mail the PDF form to the client
    2) Client opens and fills in the form
    3) They hit submit and the form information eventually gets e-mailed to my business e-mail
    I chose to use the HTTP method instead of e-mail because the PDF form says it can not be saved and if the client uses an internet beased e-mail like Yahoo it gets kind of messy.
    But, does the HTTP delivery method make it more difficult since this is not embedded in a website?
    Sorry, I did not realise this would be as involved as it is.  Your help would be greatly appreciated.

  • Help with PDF export

    Hi,
    I'm a beginner with InDesign, and I need help badly. I've gone through lots of threads with no solution yet.
    Earlier today I exported an InDesign file to PDF and parts of the document with black text went to gray. It's been that way since, even in the original InDesign document. I don't know if it's just a color thing. If I change the color to red it simply looks like a "light" red. When I'm  scrolling down the page it looks black, so long as I'm holding down and scrolling. Does anyone have a solution to getting my "light" font to be rich with color again. All of my black text is gray!
    Thanks in advance.

    No, I didn't make any changes. How do I find the opacity?
    Does the opacity not show when you scroll? It may very well be the opacity, because it looks the same even in PDF. But then it doesn't explain how some parts look like opacity has changed and then some parts look completely normal.
    EDITED TO ADD: THANK YOU SO MUCH. I FIXED IT.
    It took me hours. THANK YOU!!!!!!!!!

  • Help with pdf forms

    Hello all,
    I need help desperately! Ok. so, I created a for from an existing document (PDF) on a mac computer. I did a test to see what would happen from the receiving end. When I distribute the form, the client receives it and fills in the blanks with type. WHenever they type a multiple line of text, the text becomes jumbled. I am running out of time and need to get this form to my client asap. Has anyone ever experienced this? If so, whast did you do to fix the problem?
    Thanks

    You'll need to go back and set the properties for the fields in question to multi-line. Right click on the field and select properties.

  • Need help with pdf file

    I have the version Adobe Reader XI and I can't open up a pdf attachment.  I tried all the troubleshooting in the help menu but nothing is working.   I have to be able to open up pdf file every day. HELP

    Okay the pdf file has a little (save) at the bottom of the file and when you click on it, it says (save to my computer) When I click on this it does not give me an option of where to put the file it just blinks for a secondlike it saved it somewhere but when I go into my c drive and look I can't find it or when I go into adobe reader I can't find it so I tried right clicking on the save to my computer and got these messages
    open
    Open in tab
    open in new window
    save target as
    Now I have tried all of these and it does the same thing.  Just blinks for a second like it did something but again I can't find the file.  I really would like to just go back to opening the file in my email.  Do you think if I uninstalled Adobe reader X1 and reinstalled another adobe reader that might get me back to what I used to have?  This just happened yesterday and I have the same browser and haven't changed anything on my browser but I did update adobe reader so I was thinking it had something to do with Adobe reader X1.
    If you don't think this will work then go ahead and walk me through saving the pdf file but so far I have not been able to open or save it.

Maybe you are looking for

  • IPhone calendar month view not the same as iCal

    I have my iCal on my MacBook & iCloud set so that the start day of the week in Monday. This means that in the Month view Monday is the 1st column with the week-end, Sat & Sun columns on the right side of the screen. However, on my iPhone4 the 1st col

  • How do i delete archive log files manually?

    My db is running in oracle 10.2.0.4. somehow, the RMAN command is not deleting archived backup files. I need to delete those files manually at os level. how do i find till which archivelog files are backed up through RMAN?

  • Invoice status partly cleared

    Hello Experts,                         From a sales order in SAP , I got the billing doc # but the status shows partly cleared and this amount shows as open item for that customer , can I know why the status is partly cleared and reason in SAP Thanks

  • Display hyperlinked icon for long columns in the Report

    Hi All, I am new to APEX and i am trying to create report in APEX. I have column whose contents are too big and displaying it directly on the report mess up the whole report. Instead i want to display an icon/image in the column and if user wants to

  • Creating KPI using OLAP DML

    Hi all, How do we develop KPI (Key Performance Indicators) using OLAP DML in AWM 10g R2 (Analytical Workspace Manager)? I am new to this tool. Can anybody help me with a sample code. If there is any other way of implementing KPI in Oracle BI, kindly