How to allow attachments on forms saved with Reader Extensions?

I have a Livecycle developed form that includes action builder buttons to attach other documents.  When I re-save the form with 'Reader Extensions', the attach buttons no longer work.  Is there a way to allow this functionality?  How?
Thanks.

Of course. This facility is only available with Reader extension server.  You need to apply reader Extension permissions for the form and specifically , you need to add Embedded File Attachments reader extension.

Similar Messages

  • How can I open my old documents with cwk extension?

    how can I open my old documents with cwk extension?

    Pages '09 may open it. otherwise try LibreOffice [free].
    Peter

  • Error connecting to WS with Adobe Reader with Reader Extension server

    Hi all!
    I'm using a form designed with Designer with Reader Extension. This form
    connects to a ws in order
    With Acrobat and the Acrobat Reader under 7.0.5 it's all OK, but another
    user with Acrobat or Adobe Reader 7.0.8 received an error message when
    trying to connect to the WS.
    The error says that there was a problem reading the file and specified the
    folder url in which there is the web service.
    I remember that for some reasons, after 7.0.5 you've to certified the
    document, but I can't certify a PDF form created with Designer :(
    Anyone can help?
    Thanks,
    Alessio

    <[email protected]> ha scritto nel messaggio <br />news:[email protected]..<br />> Well, I just tried it to make sure, and I was able to call a web service <br />> fine from 7.0.8. Is it possible that someone at some point when Acrobat <br />> asks if you want to allow or block the operation chose block and clicked <br />> the check mark to make it remember that chose and automaticallly apply it? <br />> I notice that if I choose block it displays a generic error message saying <br />> it needs to be a certified form (which is wrong). Does it work from other <br />> machines?<br />><br /><br />Yes, maybe the users click on the block button. By Clicking on the Allow <br />button, all works.<br /><br />Alessio

  • How can i save a form in adobe reader than only allows you to type info but doesnt allow you to save

    I have a file that i need to email to someone, however when i fill in the information at the bottom of the page i have an option to submit via email or print... when i submit via email, it states its being sent but the person on the other end doesnt receive it. what else can i do?

    KatPazN wrote:
     ...When i open the file this is what it tells me "Please fill out the following form. You cannot save data typed into this form. Please print your completed form if you would like a copy for your records" once i fill it out the form I have the option to Submit it or print it. I tried numerous of times to submit it but the person on the other end is not receiving it. I am able to print it though!  
    I was trying to attach the file to the an email but it doesnt save the info. I have been trying different things and nothing is working. what else can I do?
    i have the file and i tried to insert the image for you to see, but it gave me an error " [The content type of this image is not allowed.]"
    Yeah, THAT'S a limitation which was set when the original author created and saved the form. You CANNOT undo it with Reader. You may be able to with Acrobat Pro, but if the PDF has DRM you can't touch it.

  • How to make a simple form made with adobe Muse work with Godaddy server ?

    Hi
    i'm trying to do a little website for my student (excuse my english) and the simple form simply don't work with godaddy server. I put the-email adress and i receive nothing, like nothing happen. I try to place the gdform instead but muse said i can't do that.
    Do yu have a simple explication or a way around that thank you very much
    the site is www.chbh.org
    Josée Bélanger

    Hi
    Please refer to : forums.adobe.com/docs/DOC-3581 to know, how you may have the forms widget provided with Adobe Muse to work with third party hosting.

  • Filling out PDF forms & Saving with Preview

    I've been having some frustrations with PDFs & Preview.
    1.) Recently I had to fill out the IRS W9 form.  With Preview I filled it out, added my signature and saved it.  Again when I sent it to someone else, they could only see my signature and not any of the stuff I filled out.  On my end, I could see everything.
    2.) Also recently a colleague sent me a PDF form, which he filled out and saved with Adobe Pro. He needed my signature, which I added using the new signature feature of Preview.  Saved it and sent it back to him.  When he opened it on his end, all of the information he had filled out had disappeard, and only my signature remained.  If I opened the same file on my end, I could see everything. 
    So, the new signature feature is great, but what good is it if I can't sign a PDF document and send it back to someone without it making everything else filled out on the document invisible to them?  Yes, I can do Print ==> Save as PDF as a work-around, but that still doesn't answer the question.

    http://www.graniteschools.org/C13/Professional%20Growth%20and%20Evalua/Document% 20Library/SEWE20050602.pdf

  • Error in opening draft email saved with msg extension

    I am attempting to create a email and save it on local hard disc. The email is a file having msg extension. So that it can be opened with MS Outlook. Also I want it to be in DRAFT mode. Like we can create draft email with MS Outlook. This message will have multiple attachmets.
    Thus when user opens this file, it will get opened with MS Outlook and user will be able to edit the message text, TO/CC list, attachments.
    I am using MimeMessage.writeTo(Outstream) API to save the message to a file, say C:\test.msg
    But if I double click test.msg in explorer to open it, it gives error:
    Can't open file C:\test.msg. The file may not exist, you may not have permissions to open it, or it may be open in another program.
    Is it possible to create draft Outlook email message with msg extension?
    If yes, how?
    My code:
                   Properties props = new Properties();
                   props.load(new FileInputStream("C:/email.settings.properties"));
                   // create some properties and get the default Session
                   Session session = Session.getDefaultInstance(props);
                   session.setDebug(debug);
                   // create a message
                   msg = new MimeMessage(session);
                   //Create message from saved email
                   File savedFile = new File("C:/test.msg");
                   // set the from and to address
                   InternetAddress addressFrom = new InternetAddress(from);
                   msg.setFrom(addressFrom);
                   InternetAddress[] addressTo = null;
                   addressTo = new InternetAddress[recipients.length];
                   for (int i = 0; i < recipients.length; i++) {
                        addressTo[i] = new InternetAddress(recipients);
                   msg.setRecipients(Message.RecipientType.TO, addressTo);
                   // Setting the Subject and Content Type
                   msg.setSubject(subject);
                   msg.setContent(message, "text/plain");
                   MimeBodyPart attachmentBodyPart = new MimeBodyPart();
                   DataSource ds = new FileDataSource("C:/WhichSQLServer.pdf");
                   attachmentBodyPart.setDataHandler(new DataHandler(ds));
                   attachmentBodyPart.setFileName("WhichSQLServer.pdf");
                   Multipart multipart = new MimeMultipart();
                   multipart.addBodyPart(attachmentBodyPart);
                   msg.setContent(multipart);
                   //msg.setFlag(Flags.Flag.DRAFT, true);
                   msg.getFlags().add(Flags.Flag.DRAFT);
                   msg.setFileName("test.msg");
                   msg.saveChanges();
                   FileOutputStream os = new FileOutputStream("C:/test.msg");
                   msg.writeTo(os);
                   os.flush();
                   os.close();

    Outlook Msg files aren't as easy to write as you would believe. They are a propretary format that microsoft uses based on the DocFile format that Word and Excel uses.
    If you did the MimeMessage.writeTo(out) and saved it to a .eml file Outlook Express will open it, but Outlook doesn't directly read this file type.
    I've started on a library to allow the creation of Outlook msg files, right now it only allows you to set text, dates, long, and boolean values on the email message (which means you can set stuff like the recieved date/time, subject, body, to, from, etc), but it does not yet support attachments or extra recipents (CC, BCC, etc). I'll be updating the copy on my site as soon as I get the other stuff working (which isn't as easy as it sounds).
    Priasoft has a library available that can do what you want however.
    travis (at) overwrittenstack.com

  • How to make a pdf (form) accessible for reader in Adobe Acrobat x pro?

    Hi guys, i have bit of a problem here as i am new to the Acrobat pro X 
    Using Acrobat pro 9 i always could save a LiveCycle pdf form with permission to fill and save as a reader user. now i have upgraded to cs6 and i have no clue how to do that anymore. The half of the options are gone and i can't access the older Acrobat pro anymore. 
    Does anyone know how to save a pdf form using Acrobat X for adobe reader users giving permission to read and save my pdf files?

    For Acrobat X go to File-> Save as->Reader Extended PDF
    This will embed the reader extended rights in PDF.

  • Saving with Reader Enabled Acrobat Pro OSX

    Hi, I have a form that I populate using a 3rd party tool.  When this form is opened in Adobe Reader I got the message "this form has changed and is no longer redaer enabled".  I solved this by purchasing Acrobat X Standard and using it to re-save the form as  "save as" -> "reader extended PDF" -> "Enable forms fill in...".   Then when I open it again in ADobe reader I am able to fill in fields, save send to someone else who does the same etc.
    However, my co-worker who needs to do this uses a Mac.  So I had him buy Acrobat.  He was only able to find "Adobe X Pro" so that is what he bought.  The behavior of this program is very different.
    When he opens one of these forms that has been populated by my 3rd party tool, he goes to save it as "reader enabled" the options on the "save as" menu are very different.  Only the bottom on is available (says something like "extended features". Anyway, when he chooses the only option available he gets a message that says "this form is already reader enabled".  !!!!!  This is a problem because if we open that same form with Adobe reader it says "This form is no longer reader enabled"
    We have spent $800+ buying two versions of Acrobat and still do not have a solution, feeling more then a little frustrated. 
    How can we force Acrobat Pro X osx to resave as "reader enabled"
    Help!!!

    Your "3rd party tool" probably corrupts the file in some way, or at least changes it and thereby removes the additional reader rights enabled by Acrobat.
    In Acrobat X Pro (Windows or Mac, doesn't matter) you enable those rights by going to File > Save As > Reader Extended PDF > Enable Additional Features.

  • Designer 8.0 Form compatibility with Reader 6.0 - error message

    I created a form in Designer 8.0. I saved it to be compatible with 7.0, but for the most part need for it to be compatible with Reader 6.0, which is not an available option. This form actually works fine in Adobe Reader 6.0 but whenever a user initially opens the form, a message pops up advising the user that all features may not work and recommending that the user upgrade. Clicking on OK then produces a new message advising the user that they must upgrade and providing the link. Notwithstanding that message, if the user clicks Cancel the form opens and can be used as intended, with a few nonfunctioning features (like the Print button on the form). Most of the intended users are running Adobe Reader 6.0, so any help on preventing one or both of messages would be very much appreciated. (Note: This same issue was posted on March 2, 2006 related to Designer 7.0, but no answer was supplied. Im hoping there is an answer to this issue for Designer 8.0).

    I created a form in Designer 8.0. I saved it to be compatible with 7.0, but for the most part need for it to be compatible with Reader 6.0, which is not an available option. This form actually works fine in Adobe Reader 6.0 but whenever a user initially opens the form, a message pops up advising the user that all features may not work and recommending that the user upgrade. Clicking on OK then produces a new message advising the user that they must upgrade and providing the link. Notwithstanding that message, if the user clicks Cancel the form opens and can be used as intended, with a few nonfunctioning features (like the Print button on the form). Most of the intended users are running Adobe Reader 6.0, so any help on preventing one or both of messages would be very much appreciated. (Note: This same issue was posted on March 2, 2006 related to Designer 7.0, but no answer was supplied. Im hoping there is an answer to this issue for Designer 8.0).

  • PDF fillable form saved as reader extended version will not open in reader on ipad2

    I have forms that I have created in livecycle and saved as reader extended versions.  We I try to open them from adobe.com in the adobe reader on my ipad2 I get the Please wait... screen the form never opens.  Any help?

    Technically, they can be opened but we will only display the placeholder page asking you to "wait" =). The form content is not viewable or fillable.

  • Designer 7.0  form working with Reader 7.0.5 but not Reader 7.0.8

    Hello everyone,
    I was wondering if anyone has had a problem with a formed created using Designer 7.0 that was working with Reader 7.0.5 but no longer functions with Reader 7.0.8?
    The form consists of a numeric textbox N1 and 2 checkboxes C1[0] and C1[1].
    All code is done using FormCalc.
    Here is the situation: if the number in the numeric box is blank or not greater then zero, then neither check box can be checked. Both check boxes can not be checked at the same time. If the value in the numeric box is greater then zero, the checkboxes may or may not be checked (again both can not be checked at the same time).
    N1 has code the following code in its exit event:
    if (($.isNull) or ($.rawValue le 0)) then
    C1[0].rawValue = 0 //if not positive value, checkboxes must be blank
    C1[1].rawValue = 0
    endif
    C1[0] has the following code in its click and exit event
    if (C1[0].rawValue == 1) then
    C1[1].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    $.rawValue = 0 //uncheck if N1 is not positive
    endif
    C1[1] has the following code in its click and exit event
    if (C1[1].rawValue == 1) then
    C1[0].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    C1[1].rawValue = 0 //uncheck if N1 is not positive
    endif
    The above code worked exactly as described when the form was used in Reader 7.0.5.
    Under Reader 7.0.8 the following happens:
    if N1 is blank or less then or equal to zero, both checkboxes can be checked at the same time (this should not happen at all) but neither can be unchecked
    if N1 is positive the code (and checkboxes) function as described.
    I am not sure if this is a Designer issue or a Professional/Reader issue, so I am posting this here as well as in the other 2 spots.
    Any help is greatly appreciated,
    Ben

    Chris,
    Thank you for the sample you provided. First, I must apologize for not mentioning that there was additional code in the Click event. I thought I had removed it from my form, but apparently I had not.
    I have compare the sample you provided to my form. I noticed several differences between them. First was that you used Designer 7.1 to create your sample, whereas I used Designer 7.0. I do not believe that this will have an impact, although it is possible. Also, in your sample, then click and exit events both need to contain the same "check" code. Your sample has one IF statement in the click event and one IF statement in the exit event. To match my form code, the Click and Exit events together need to contain both IF statements. My form originally contained the code in the Change event also.
    i.e. C1[0] has the following code in both its Click, Exit and Change events
    if (C1[0].rawValue == 1) then
    C1[1].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    $.rawValue = 0 //uncheck if N1 is not positive
    endif
    and similarly for C1[1].
    Based off your sample, I did some more digging and found that the problem is caused by the Change event for the checkboxes. I have removed the code from the Change event and now the form works as desired.
    So, if the Change event has NO code, and if the Click and Exit events for the checkboxes have both IF statements the overall behavior (as specified earlier) is identical (and what I am looking for) for both Reader 7.0.5 and 7.0.8.
    Now, if I add the IF statements to the Change event (without removing them from Click and Exit), the behavior in Reader 7.0.5 does not change (works as specified). In Reader 7.0.8, the checkboxes can not be unchecked if N1 is blank.
    So my questions now become:
    1) What has actually changed between Reader 7.0.5 and 7.0.8 (i.e. more detailed description than the generic release notes)?
    2) Which one actually exhibits the correct behavior?
    3) If this is a change to the event model, is this documented anywhere?
    Thanks again,
    Ben

  • How to generate web services for OAS with wsdl extension

    Hi,
    I wanted to know how to generate web services from Oracle Application Server especially with .wsdl extension and with document/literal style.
    I know that earlier there was a tool called SmartConnect from BEA WebLogic.
    But that will work only with ALSB (Aqua logic Service Bus). I guess that ALSB has been renamed as Oracle Service Bus by Oracle after the acquisition of WebLogic. My question is what is the new name for the SmartConnect Tool from WebLogic, which generates wsdl very easily from Oracle database.
    I am unable to know the new name for SmartConnect and how to download that tool from Oracle web site.
    Also, I want to know, whether there is any other way to generate the wsdl from Oracle, if so, please let me know.
    Regards
    Raman

    Hi Jeethandra,
    Please refere to the below link might be some help.
    [http://help.sap.com/saphelp_mdmgds55/helpdata/en/45/069152856241e1e10000000a1553f6/frameset.htm]
    regards
    shankar

  • How to create a help box compatible with reader mobile?

    I've imported an excel file into pro and then modified the pdf form. I attempted to create "pop up" help boxes two ways:
    1. action button with java script
    2. action button with show/hide field
    Each time I imported the pdf form into formscentral, downloaded it, emailed it to myself, and then opened it on my mobile device (with adobe reader, not another reader). Neither way recognizes the help boxes.
    As I've been reading, it seems like a lot of bells and whistles aren't compatible with reader mobile which is very disappointing. Is there any way to create help boxes that are compatible with reader mobile?

    Hi;
    I think you will get better assistance with this question in the Reader Mobile forums:
    iOS: http://forums.adobe.com/community/adobe_reader_forums/ios
    Android: http://forums.adobe.com/community/adobe_reader_forums/android
    Thanks,
    Josh

  • Allow a simple obdc connection without Reader Extensions

    I have this requirement, and so it seems to others on the LS forums.
    I have no server and need to distribute information to Adobe Reader users of a form. The information benefits from some manipulation (sorting), and may be updated frequently. One easy way to maintain the data is using XL. When the data needs to be sent to the user community its simple to attach it to an email.
    My form, created with LS uses this variable information as a 'database' to populate default values into the form, think names, addresses, and phones. The Reader user doesn't update the database, though they could by using XL.
    Today I can't tie the form to the XL data easily. While I appreciate the security issues I'd request some completely 'local' solution to an LS data connection, one that could run on a single PC.

    Thanks for a quick response.
    In Acrobat *8 or 9 Professional you can enable a form to be activated with the save feature.
    How do you do this.  When I saved the form without distributing it, and opened the form up in Acrobat Reader, the header said specifically that the data could not be saved in the form.  And when I went to save it, I got the message in a popup that said "Data in this form will not be saved. Reader can only save a blank copy of this form."  Then a second message (with a light bulb) said:  "Please print your completed form if you would like a copy for your records."
    So, if in fact I can have the form (without "distributing" it) so that the user can save the form with the data, how do I do that?  Are there commands I use, options?  Please let me know.  I will be eternally grateful.
    Also, if you edit form fields, you may remove the submit button.
    The edit form fields does not offer any access to the submit button.
    Best,
    Barbara

Maybe you are looking for

  • Some times my pictures was saved but some times not

    Some times my pictures was saved but some times not

  • Excel 2013 does not open files

    Whenever I click on an Excel spreadsheet, Microsoft Office does not open the file, instead it opens Excel but without any content.  Only thing on the screen is at the bottom left corner and it states "ready" 

  • SQL MP 6.5.1.0 Monitoring Replication Publications and Susbscriptions

    I am setting SQL replication monitoring and the discoveries are going well. However, the Publications and Subscriptions are showing "Not Monitored". I have enabled every discovery and performance rule I can find. I haven't found any monitors for eith

  • Hindi font is not visible

    Hi I am running the silverlight4 application on mac and i have used hindi fonts in the text block but on safari it shows as boxes instead of hindi fonts. safari version: 3.1.2 Can you help me? Thanks in Advance..

  • Premiere Pro CS5 - How to get a good Slow Motion

    Hi all, what's the best option to get a realy good Slow Motion in Premiere Pro CS5. We use an interlaced HDV Material (1080i). We try change Speed Duration to 50%, mix frames and some other options (could only tell you the german description = "Flimm