Attach a picture to a form

Hi,
I'm creating a form people need to fill in (adobe pro X), but they can also attach a picture we can use later on for a certificate.
I used the "button" option and used a javascript "event.target.buttonImportIcon();" this imports the picture but does not make a clickable picture so i can save the picture as a JPG after i received the form.
Is there anyway to attach a picture and make i editable or usable afterwards. People need to be able to have this option so they can fill in the form in reader and send it to me without a seperate picture.

What I've done is add a button that when clicked causes an instructional message to be displayed, something like:
// Mouse Up JavaScript for a button
app.alert("To attach an image file to this form, select \"Comment > Annotations > Attach file (paperclip icon)\".\r\rClick on the page with the tool selected and you will be prompted to select a file to attach.", 3);
You can set it up so that the message is tailored to the specific version of Acrobat/Reader that's being used, since the details of accessing this tool vary depending on version.

Similar Messages

  • Example of a user able to attach a picture to a form?

    I need to add the ability of a end user to click a button and attach a picture to a existing form. does someone have an example I can look at?

    Why not place an image field on the form? The user can click on the field and select the image he wants.

  • Attach picture in SAPSCRIPT form

    Hi, do anyone know how to attach picture in SAPSCRIPT form?
    Pls guide step by step or provide code example .
    Thanks.

    If I want to attach graphic/pic dynamically to Vendor in RFQ (Request for Quotation) print form, how to attach?
    FYI, I develop RFQ in sapscript form.
    Thanks.

  • For some reason I cannot find where to attach a picture to an imessage on my MacBook Pro.  Can anyone tell me?

    For some reason I cannot find where to attach a picture to an imessage on my MacBook Pro.  Can anyone tell me?

    I figured it out.  Copy the picture from where you have it stored on your computer, and paste into the text line of the iMessage.  Simple!

  • How can I attach a picture to an email in file format not as a picture

    how can I attach a picture to an email in file format,

    Please pardon the intrusion…
    Hi, Leroy! 
    Congratulations on advancing to Level 6!
    At the Water Cooler in the Level 6+ Lounge, we are throwing virtual confetti in celebration of your attainment of Level 6-dom. Would you care to join us at the Water Cooler?
    Towards the bottom of the index on the Apple Support Communities Home Page you soon will find the Lounge link available to you. It should work for you within the next 24 hours if all goes as it should.
    Hope to see you there soon!

  • Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • Show attached material picture in ABAP screen object

    Hello,
    I'm attaching material pictures with the GOS create attachment option. Here I could attach all kind of documents including the files "*.gif, *.tif, etc." These pictures are stored on our document server. Another possibility I use is to create a url to the direct link of the picture on the vendors site.
    The materials are our own stock materials. These stock materials could be ordered by the reservation system. For that we have created our own reservation screen. In one of the fields they could enter a part of a material description to search for a particular material. If more material is valid these materials are shown in a selection list. To make is easier to pick the right material I want to show the material picture in a ABAP object on the selection screen.
    I'm already able to show, in the list, if there is a material picture available with the function "BAPI_REL_GETRELATIONS"
    If this function returns a table I know there is a (picture) document attached.
    If the clicks on the hotspot in the list I want to show the picture in the ABAP object on the screen.
    Here is a part to see if there is a material picture?
    CLEAR OBJECTID.
    OBJECTID-OBJKEY = makt-matnr. " Long number incl. zero's
    OBJECTID-OBJTYPE = 'BUS1001006'.
    N_lines = 0.
    clear LISTOFRELATIONS.
    CALL FUNCTION 'BAPI_REL_GETRELATIONS'
    EXPORTING
    OBJECTID = OBJECTID
    ROLE =
    RELATION =
    RECURSIONLEVEL = 1
    IMPORTING
    RETURN = B_RETURN2
    TABLES
    LISTOFRELATIONS = LISTOFRELATIONS
    describe table LISTOFRELATIONS lines N_lines.
    IF N_lines > 0.
    WRITE ICON_TIF AS ICON to artikelen-pic.
    ELSE.
    artikelen-pic = ' '.
    ENDIF.
    I'm able to show a picture in the ABAP object with the following code:
    IF P_CONTAINER IS INITIAL.
    CREATE OBJECT: P_CONTAINER EXPORTING container_name = 'MAT_PIC',
    MM_PIC1 EXPORTING parent = P_CONTAINER.
    l_alignment = cl_gui_control=>align_at_left +
    cl_gui_control=>align_at_right +
    cl_gui_control=>align_at_top +
    cl_gui_control=>align_at_bottom.
    CALL METHOD mm_pic1->set_alignment
    EXPORTING
    alignment = l_alignment.
    CALL METHOD mm_pic1->set_3d_border
    EXPORTING
    border = 1.
    CALL METHOD mm_pic1->set_display_mode
    EXPORTING
    display_mode = mm_pic1->display_mode_stretch
    EXCEPTIONS
    error = 1.
    ENDIF.
    IMPORT pict_tab = pict_tab FROM DATABASE abtree(pi) ID 'ENJOY'.
    CALL FUNCTION 'DP_CREATE_URL'
    EXPORTING
    TYPE = 'IMAGE'
    SUBTYPE = 'GIF'
    SIZE =
    DATE =
    TIME =
    DESCRIPTION =
    LIFETIME =
    CACHEABLE =
    SEND_DATA_AS_STRING =
    TABLES
    DATA = pict_tab
    FIELDS =
    PROPERTIES =
    CHANGING
    URL = url
    EXCEPTIONS
    DP_INVALID_PARAMETER = 1
    DP_ERROR_PUT_TABLE = 2
    DP_ERROR_GENERAL = 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 METHOD mm_pic1->load_picture_from_url
    EXPORTING
    url = url
    EXCEPTIONS
    others = 4.
    Could any one help me further to show the picture in the ABAP object 'MAT_PIC'?
    I'm using SAP release 4.7 on a Oracle database.
    The document server is the SAP DMS server on a SAP-DB database.
    Kind regards,
    Richard Meijn

    Refer the following:
    REPORT  ZTEST12.
    * Type declarations.....................
    TYPES pict_line(256) TYPE c.
    * data declarations......................
    DATA :init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit,
          picture   TYPE REF TO cl_gui_picture,
          pict_tab TYPE TABLE OF pict_line,
          url(255) TYPE c.
    CALL SCREEN 100.
    * Dialog modules......................................
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN100'.
      IF init is initial.
        init = 'X'.
        CREATE OBJECT:
               container  EXPORTING container_name = 'PICTURE_CONTAINER',
               picture    EXPORTING parent = container.
      ENDIF.
      IMPORT pict_tab = pict_tab FROM DATABASE abtree(pi) ID 'ENJOY'.
      CALL FUNCTION 'DP_CREATE_URL'
           EXPORTING
                type    = 'IMAGE'
                subtype = 'GIF'
           TABLES
                data    = pict_tab
           CHANGING
                url     = url.
      CALL METHOD picture->load_picture_from_url EXPORTING url = url.
      CALL METHOD picture->set_display_mode
           EXPORTING display_mode = picture->display_mode_fit_center.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE TO SCREEN 0.
    ENDMODULE.

  • Is there an easy way to attach a picture to email?

    I know I can easily share pictures when I'm in iPhoto, but how do I attach a picture to an email already open?
    I click the paperclip icon, then photos, and I'm shown my iPhoto libraries icons.  If I select one of those, it attaches the entire library to the email.  How can I simply browse and then select photos from within those libraries?
    I've also tried dragging an image from iPhoto into the open message, but all I get is the file name with no content.
    I'm used to Windows, where I simply open a folder and select one or several images to attach.  This apparently doesn't work the same way.
    Thanks for any help.
    Stan

    Right click (or control-click) on the file icon and click View as Image.
    Whether you personally view it as an image or icon, though, the recipient will still get it. Their own email program may display it in different ways, but you have no control over that.
    Matt

  • Is it possible to insert a picture in a form?

    The person filling out the form would insert a picture in a space provided.... all of which could then be distributed.... Or if I can't do this in a PDF form, how else can it be done? What I'd really like to have (but is probably not doable) is a thumbnail of the picture on the form where it expands upon clicking on it. Can anyone point me in the right direction. Obviously I'm new to this and just trying to help a friend out in his new business. Thanks!

    An html widget (created with adobe edge or other means) would take up the whole screen when the user taps on the widget. Probably not the localaized effect you're looking for. Another way could be to use a keynote presentation with an animation that starts when the user taps on it. None of these solutions are ideal. If your book has a lot of these types of effect, you're better off developing an app or using another tool than IBA.

  • How do I attach a picture in iPhoto to an email?  I can't find it anywhere else.

    How can I attach a picture in iPhototo a gmail?  I can't find the picture anywhere else on my computer.

    Are you accessing the account through a client (like the Mail app on your Mac) or via a web browser (signed into gmail.com website)?
    If via a client, you should be able to email from within iPhoto or drag the photo into the new messge window.
    If you need to upload it to webmail then export the photo from iPhoto to a convenient location so you can upload it to Gmail.

  • Unable to upload pictures in mail forms in CRM 7.0

    Hello CRM Experts,
    We are unable to upload pictures into mail forms. After upload the pictures are not displayed, and have a cross mark.
    I am not sure if it is a technical issue or browser related problem. We are on IE 8.0.
    Suggest some solution/work-around to the problem if any.
    Regards,
    Shyamak

    Hi Shyamak,
    Do you have note 1469520 on the system, we have had the same error.
    kr
    Michael Wolff

  • Attaching files to a web form

    please tell me how to attach files to a web form for uploading. i know how to make a page that just uploads a file. but before i do it, i have to attach files( sent by a pop-up window ) to a web form in a main window. There are some resources about uploading files, but not for attaching files to a web form... please help me...
    Thanks in advance...

    I gotcha!
    Try this:
    1) Open new window with file inputs within a std form.
    2) Have form submit to servlet
    3) Have servlet retrieve file(s) and save them in session.
    4) Have servlet spit out javascript to close popup window and refresh main page (which will then show some sort of verification that the files were received.
    5) When main form is submitted, retireve (and remove) files from the session and process.
    Hope that helps,

  • Attaching a picture to a text message

    Is it true that you cannot attach a picture to a text message?

    there you go guy ez way of doing it
    Alltel = [email protected]
    AT&T (Formerly Cingular) = [email protected]
    Boost Mobile = [email protected]
    Einstein PCS = [email protected]
    Sprint = [email protected]
    T-Mobile = [email protected]
    US Cellular = [email protected]
    Verizon Wireless = [email protected]
    Virgin Mobile = [email protected]
    Send away!

  • How can i upload pictures in these forms to make my descriptions more easy?

    how can i upload pictures in these forms to make my descriptions more easy?
    thanks!

    Hi Ace -
    Images can't be uploaded to this forum, but they can be displayed inside your post (inline) by making them accessible on a website. In that case put the url between two exclamation ('!') points, e.g. \!www.apple.com\!. You'll find more formatting info at [http://discussions.apple.com/thread.jspa?threadID=121950].
    You can see how your post will appear by clicking the Preview tab above the "Post Message: Reply" editor panel. Another trick that might come in handy: If you want to see how someone else formatted their post, just click Reply, then click the double-quote (") icon just below the Preview tab.
    Hope that helps!
    \- Ray
    !http://imgs.xkcd.com/comics/substitute.png!
    !http://4.bp.blogspot.com/_337VLNYe7kY/StxyRZtIBII/AAAAAAAAJxI/4oP1f4qbz14/s400/l auradern.jpg!

  • I've been mailed some pictures in negative form - how do I convert to positives

    I've been mailed some pictures in negative form - how do I convert to positives

    There are thre kinds of colour profile: RBG, Greyscale and CYMK. It's one of those three.
    Select one of the Images on the Finder and go File -> get Info. In the "more info" section of the resulting window you'll see the Color Space:

Maybe you are looking for