How do I download a pdf, fill in the blanks and then email

How do I download a pdf file, change it so I can fill in the blanks, then email?

If the form doesn't have any fillable form fields, then you could use the text tool under "fill and sign" in Adobe Reader XI.
If you have an older version, you cannot do this.

Similar Messages

  • How can I embed a pdf file into the body of an email?

    How can I embed a pdf file into the body of an email?

    The problem is defining what it even means to “embed” a PDF file in the body of an e-mail, especially if you are dealing with a multiple page PDF file.
    E-mail is either pure text, rich text (something akin to RTF in Word), or HTML. PDF is not compatible with any of these. Thus, to embed a PDF file, something has to be converted and that means the PDF would be converted to a less graphically rich raster format. But is that what you would really want?
    I think that the MacOS and iOS e-mail clients do under some circumstances place an attached PDF file within HTML segments and by clicking on same, you get the equivalent of extracting the full PDF file, but I have no real experience with that.
    Another alternative is HTML with a proxy image with a hyperlink to an external PDF file that is invoked when you click on the hyperlink.
    Perhaps you can explain what you are really trying to accomplish and what the recipient of such an e-mail's actual experience would be?
              - Dov

  • How do I select and email a whole lot of photos on my iPad from my iPad emails? It seems I have to go into Email and then insert one photo at a time? Isn't there a way to select all in the photos and then email the batch.?

    How do I select and email a whole lot of photos on my iPad from my iPad emails? It seems I have to go into Email and then insert one photo at a time? Isn't there a way to select all in the photos and then email the batch.?

    Actually, you can email up to 5 at a time from the Photos app. Select any more and the email share option will not appear.
    If you explain why you need to email large numbers of photos, we might be able to offer an alternative.

  • Have an ipod and then got the wife an iphone4. all passwords are screwed up. she can not access playstore cuz she doesn't have password. i can not get find any help on how to get or update a password for the ipod. and then get her a separate password for

    have an ipod and then got the wife an iphone4. all passwords are screwed up. she can not access playstore cuz she doesn't have password. i can not get find any help on how to get or update a password for the ipod. and then get her a separate password for her iphone. we need to save her photos, music, etc to ? icloud and the phone stuff to verizon cloud? so when she gets her new Iphone6 she can have all her "stuff" back on the new phone. hope this makes sense. please offer suggestions here or at [email protected] thanks for your help!

    Oh no! I'm sorry to see there's a lot of confusion here and data shared, x-rayDon. We can definitely work to fix. This happens when two devices share the same Apple ID, so she will need to reset hers. She can do so by assessing this link Apple - My Apple ID. You will need to decide who will keep the account if want separate Apple IDs since purchases cannot be shared unless you do Family Sharing.
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Fill in the blank and advanced actions

    Hi everyone,
    I'm wondering whether this can be accomplished with fill in the blanks standard quiz question or whether I need use Advanced Actions.
    I have a graphic of a form that needs to be correctly filled out with specific values. There are multiple fields on each graphic/slide. I want all fields to be filled in correctly to get the question (slide) correct. I also want to be able to adjust to fields to have an invisible border and no inset so they are invisible on top of the the graphic.
    Is this possible using a standard fill in the blank question slide (I couldn't really figure it out) or is this something that I should be looking at Advanced Actions to accomplish? If Advanced Actions will be required, does anyone have an example?
    I appreciate the assistance!

    Hello,
    With the default FIB you are a bit limited especially concerning the field to be filled in. Advanced actions will give you more control. Would need some more details, but I did blog about constructing all kinds of questions. Here is one link to a post that has a FIB question:
    Extended TextArea widget for custom questions
    This will not be exactly what you are looking for, but perhaps give you some idea about what is possible. Are you familiar with advanced actions?
    Lilybiri

  • Fill in the Blanks and Win a Prize!

    Well maybe no prize but I would be grateful. Our class was assigned 2 array example programs with key bits of code missing. Iv'e understood everything pretty well up till this point, but arrays have me confused. I've spent hours on these things but always wind up with a compiling error of some sort. The instuctions and intended output are commented on the top, any help would be greatly appeciated.
    Here is program 1.....
    Sample Output:
    *** start program ***
    Average Integer Score: 18
    Count of Integers Less Than Average: 3
    *** end program ***
    Input:
    An integer array of ten numbers: 20,17,9,29,19,9,19,20,20,19
    Compile-time array with initialization list of numbers.
    NOTE: In main() function
    Processing:
    Function: computeAverage(final int[], final int):int
    countLessThan(final int[], final int, final int):int
    Output:
    Function: display(final int, final int):void
    Display as shown in sample output.
    public class Arrays1D_Ex02
    public static void main(String [] args)
    // finalants
    final int SIZE = _____;
    // local data
    int intAverage = 0;
    int count = 0;
    // data declaration(s) & initialization(s)
    // array data: use data from sample output above
    // TODO: declare & initialize array of ten integers
    int numbers[]={___________________________________};
    // start the program
    System.out.println( "*** start of Arrays1D_Ex02.java program ***");
    System.out.println();
    // Compute & return integer average of the array
    // TODO: call computeAverage()function,
    // which returns average of numbers
    intAverage = computeAverage(numbers);
    // Compute & return count of array values less than integer average
    // TODO: call countLessThan() function,
    // which returns count of numbers less than the average
    count = countLessThan(numbers, intAverage);
    // display the required output
    // TODO: call display function,
    // passing integer average & count of numbers less than average
    display(intAverage, count);
    // terminate the program
    System.out.println();
    System.out.println();
    System.out.println( "*** end of Arrays1D_Ex02.java program ***");
    return;
    } // end main()
    // Function Name: display(final int, final int):void
    // Purpose: to display integer average & count less than average
    // Values received: integer average, count
    // Values returned: <none>
    // Notes:
    // display label "Average Integer Score: "
    // display integer average
    // display label "Count of Integers Less Than Average: "
    // display count
    // TODO: code the display function
    private static void display(final int average, final int count)
    // display labels and data
    System.out.print(_________________________);
    System.out.println(_____________);
    System.out.print(_________________________________);
    System.out.println(___________);
    // TODO: code the computeAverage function
    private static int computeAverage(final int[] numbers)
    // local variables (if needed)
    int sum = 0;
    int intAverage = 0;
    // compute sum
    for(int i = 0; i < numbers.length; i++)
    sum ___ numbers;
    // compute integer average
    intAverage = sum / numbers.length;
    // return integer average
    return __________;
    // TODO: code the countLessThan function
    private static int countLessThan(_________________,
    // local variables (if needed)
    int count = 0;
    // count number of values less than average
    for(int i = 0; i < numbers.length; i++)
    if(numbers[i] ___ average)
    count++;
    // return count
    return count;
    } // end class
    -------------------Here is program 2------------------------------------------------------------------------------------------------
    Sample Output:
    *** start program ***
    Number Count
    1 1
    2 2
    3 5
    4 2
    5 3
    *** end program ***
    Input:
    An integer array of 13 numbers: 3, 4, 5, 3, 2, 1, 3, 4, 5, 3, 2, 3, 5
    An integer array of 5 counts intialized to all 0.
    Compile-time arrays with initialization list of numbers.
    NOTE: In main() function
    Processing:
    Function: countValues(final int[], final int, int[]):void
    The values in the numbers array are counted and the correct cells of the count array are increment.
    Output:
    Function: display(final int[], final int):void
    Display as shown in sample output.
    public class Arrays1D_Ex03KEY
    public static void main(String [] args)
    // finals
    final int VALUES_SIZE = 13;
    final int COUNT_SIZE = 5;
    // local data
    // data declaration(s) & initialization(s)
    // array data: use data from sample output above
    // TODO: declare & initialize array of ten integers
    int [] numbers = ________________________________;
    int [] counts = new _____________________________;
    // start the program
    System.out.println("*** start of Arrays1D_Ex03.java program ***");
    System.out.println();
    // Compute count of values
    // TODO: call countValues() function
    // passing numbers array, array size, count array
    countValues(_____, VALUES_SIZE, _____);
    // display the required output
    // TODO: call display function,
    // passing count array & size
    display(_____, COUNT_SIZE);
    // terminate the program
    System.out.println();
    System.out.println();
    System.out.println( "*** end of Arrays1D_Ex03.java program ***");
    return;
    } // end main()
    // Function Name: display(final int[], final int):void
    // Purpose: to display count of values
    // Values received: array of counts, array size
    // Values returned: <none>
    // Notes:
    // display column headings using manipulators
    // in a 'for' loop, print the number and count
    // TODO: code the display function
    private static void display(______________, __________________)
    // print column headings
    System.out.print("Number");
    System.out.println("\tCount");
    // print detail lines (format on one line, display on next)
    // use a 'for' loop
    for(int i = 0; i < size; i++)
    // TODO: print out the number
    System.out.print(___________);
    // TODO: print out the count
    System.out.println( "\t" + _____________);
    // TODO: code the countValues function
    private static void countValues(________________,
    final int size,
    // TODO: determine value and increment count
    // use a 'for' loop
    // HINT: use nested arrays & their indexes

    You will (usually) get better help with homework if you make some effort to complete it, then post your problems. Just posting homework often causes people to reply with flames. Also, when posting code use the code and /code tags as explained in the Formatting Help link (right above the text box when you compose a post).
    So try filling in your blanks and comment the lines where you have done so. Then post the smallest amount of code that should compile, but does not, and be sure to post the full exact error messages.
    Another tip, compile code in small steps - write some then compile it. You will have to write enough code to include dependent variables and methods but it is much easier to solve 3 compiler errors than 30.

  • How do I convert my music to an mp3 file and then email it?

    Hi!
    Can someone tell me how to convert my music I loaded on itunes to an mp3 file, and then how to email this file,
    so someone can open it and hear it, e tc?
    thanks!
    Maggie
    [email protected]

    Set the iTunes Import preference to MP3, select the track, and then choose the Convert menu command. Then attach it to the email using whatever method or command your email application uses.
    Note that it will be illegal to send this track to someone else unless they already have purchased a copy or it's a track that you composed and performed yourself.

  • SSHR How to popullate PDF ( Fill in the blanks) with data in prev page

    I need to replicate the Federal tax Information (W4) process in self service, what it does is it will let user change their w4 details and when they click on next page in the next page it will launch pdf inside the browser and populate w4 form with data entered in previous page.Basically i am creating state tax info form and want to see if I can have similar flow .
    What do I need to do to make this heppen?

    karan,
    There won't be any exact scenario, but the threads with details on how to use XMLP with OAF. There are some sample codes and with that you should be getting started.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                   

  • How can I download Aperture so I have the installer and full software if I need it later? I already have it installed and using.

    Hi I am already running OS X 10.10.3 and Aperture. I've had Aperture for quite a while now..
    If I upgrade to a new iMac later on down the road and what to reinstall Aperture again, what can I do? From the App Store, my open option is to OPEN the app. I want to download the full Aperture software, burn it to disc so I have it for later use if needed.. Can't locate any instructions on how or where to download the full installer and software. Has anyone done this? Thanks in advance! Dave

    Catsman wrote:
    I assume Apple will not agree that Aperture will run on future OS's. Also eventually Time Machine backups are overwritten.
    This isn't going to be easy. I have the exact same issue. I want to keep my thousands of photos in Aperture libraries and be able to access them in the future if need be.
    This highlights the problem of trusting a company with your data.
    Long Term Transition from Aperture
    Even without aperture your photos are still there in the aperture library, just got to it in finder and show package contents, there are lots of folders with one call masters, then its all folders of year / month / date with all your master in there.
    Luckily I decided to use referenced flies for all my photos on an external drive, just as safe but a little easier to find for me.

  • How do you have a long video in the timeline and then save it as separate parts?

    I'm looking to record playthroughs of video games and putting them on youtube. So what I would be doing is recording about 2 hours of footage. I'm trying to find out how to cut that 2  hours of footage up into 10 minute clips, and then save each individual clip as a separate file so I can upload that part onto youtube. If that is hard to understand, sorry, I'm bad at explaining things. But if you understand and know how to do this, please answer. Any help is appreciated. Thanks in advanced!

    I agree that using the WAB (Work Area Bar) for the desired Duration, and then Sharing that, would be the best route. This ARTICLE goes into more detail on the WAB.
    Good luck,
    Hunt

  • Can I select a rectangle in pdf document, identify the bounds, and then retrieve the text with vba?

    I am using MS Access 2010 VBA and acrobat X, and AcroExchg.  I can manipulate and search pdf documents without difficulty.  I would like to programmatically capture the text in a rectangle that I have drawn on the document with a mouse.  It appears that If I can obtain the bounding rectangle that I could use AcroExchg.PDTextSelect to retrieve the text.  Is there a way to retrieve the coordinates of a mouse drawn rectangle in a pdf document.  In other words the equivalent of select, copy and later paste the text into another document?
    Message was edited by: jgm835
    I have reviewed posts from the adobe forum that indicate that obtaining the coordinates from a user drawn selection are not available through automation with AcroExch, but that function would be available .through a plug in.  Unless there is information to the contrary I will look to using menu commands in Acrobat

    hi Bruce,
    1. It sounds like what you need is to set the starting version number since your revision number increments in whole numbers, it would match up to SharePoint once the starting version number is set. You can potentially create a new custom field in the
    library to manually track the version of the uploaded PDF document, but this might not match up with SharePoint's own version number and could get confusing. Another possibility is to upload dummy versions of the PDF document until the SP version
    matches with the revision version and then delete these dummy versions.
    2. When you upload the PDF document again into the library, it should prompt you to see if you want to replace the existing. If you proceed with the upload, it should replace and increment the SharePoint version number.
    Please Mark Answered if my reply solves your problem. Thanks!
    Jeff Thai
    Technical Solutions Architect, AvePoint
    http://www.AvePoint.com

  • How to fix when a song stops in the middle and then goes to the next song

    How do I fix this problem

    I solved a similar issue, where some songs in my itunes library would play to some random point and then skip to the next song. It started when I replaced my computer, so I copied over my library to my new computer and went through installing and importing on my new machine. When I noticed this behavior for random songs, here's what I found.
    The affected files were .m4p files I'd purchased from the itunes store. This had nothing to do with activating them with my Apple account, which I did. The easiest way I found to identify the affected files was to view all your music in itunes, right click on any of the column headers, and select 'kind' so that column shows. Then order your music by the 'kind' column, and scroll down until you reach the songs where kind = 'Protected AAC audio file' (not to be confused with Purchased AAC audio file, which were unaffected in my case). Highlight just those 'Protected AAC audio file' songs, copy them, and paste them in some temporary directory. Back in itunes, now delete these hightlighted songs (I chose to keep the files rather than permanently delete them, but I think either would work).
    Before adding these songs back to your library, if you want them pulled into your library directory rather than left in temp, make sure in Edit > Preferences > Advanced > check off Copy files to itunes media folder when adding to library.
    Then in itunes, click File > Add file to library > browse to your temp directory > select all files > and click Open to add these files back to your library. After that, all my previously disfunctional files exhibited normal playback.
    I hope you find this before you waste many hours on this like I did.
    Good Luck, A.

  • How do I download a word doc off the internet and still be able to edit it in Pages?

    I am really stuck. I have some stuff on Skydrive that downloads as a docx but then I cannot open it in Pages. And if I download it as a pdf in Preview I still can't edit it. Can someone please help?

    What version of Pages? What version of OS X?
    I ask because I just now located a 'random' .docx document that had arrived as an email attachment, and opened it with no difficulty in Pages '09 v4.3 (1048), running in OS X v10.8.4. I did get some (expected) warnings, all having to do with fonts used in the document that are not available on my machine.
    Regards,
    Barry

  • How can i download a powerpoint presentation onto my mac and then work on it to make it into a video

    I have an older powerpoint presentation which I now want to download to my Mac and be able to change it and make it into a video with sound and music.  Can I?

    Install iWork or Microsoft PowerPoint on your Mac.

  • How can I fill in the blanks on a lease?

    I found the file, now I'm trying to use the "Tool" to fill in the blanks, and it won't allow me to.

    Hi Atiimkwabena,
    I suppose you are trying to fill the PDF form using Adobe Reader. (Correct me if I'm wrong)
    If yes, then that form might not be reader rights enabled. Adobe Reader being a read only software for PDF is only meant for reading and saving the blank copy of PDF. If you want to edit something in the PDF then the creator has to enable user rights(commonly called as Reader Extend rights) so that you can save the filled PDF. That can be done by Adobe Acrobat.
    I would request you to kindly contact the author of the PDF to enable the user rights and send it again.
    Hope this helps.
    Regards,
    ~Pranav

Maybe you are looking for

  • How does iMatch treat my own home-made recordings with high emotional value?

    The question speaks for itself. I am cautious of using iMatch, because I am not sure what it will do with my precious home-made recordings (with performances of some of my deceased family members) of which there is no 'match'. Is it smart to make a b

  • Error in Displaying Expense Form

    Hi , I am working on the SAP T&E Module.I am getting an error when i click on the display expense form button. The details of the error are as: Следующий текст ошибки обработан P92 в системе: *Unable to interpret 0 as a number. Ошибка возникла на сер

  • Video message has no audio

    Hello, recently there hasnt been any audio when I send and playback a video message.  I tried adjusting the mic on my pc and on skype, so far, nothing. I have the latest skype, this just happened out of the blue. I thank you for helping me. 

  • I have a macbook air and since the last update, I cannot find camera. Ideas?

    I have a mac book air and since the last update, I cannot find my camera.

  • Post Installtion steps for PI 7.1

    Hi.. we have completed the PI 7.1 Installation, can you please provide the Post Installation steps for this PI 7.1 Thanks in advance, Pasi.