Expand my Community achievements bar.

Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • If your user is using Adobe Reader and wants to add an attachment to your PDF file... you need Adobe LiveCycle Designer Reader Extensions to do that...If your user is using Adobe Acrobat Pro then u can add attachments with thisvar myDoc = event.target;var sFile = "myFile" + NumericField1.rawValue;my...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • Well actually this line is changing your submit button directly.Once you click the submit button it will use the last information changed by the exit event of your textfield... it should'nt be more than this...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • Sorry for misleading you... I thought it was all about the Form you created...I didn't know it was possible to customize the swatches and pallettes colors...There must be a way and I am not aware of, or it is not an option... yet...My apologies... if I ever find how, i'll let you know

    Type

    Questions

    Views

    1.4K

    Likes

    0

    Replies

    0
  • Yes, you must have Adobe Acrobat Pro... Once you have finished editing your form with LiveCycle Designer, save your form and close LiveCycle Designer...Open Adobe Acrobat Pro and open your pdf file1. Click on "File"2. Click on "Save as..."3. Click on "Reader Extended PDF"4. Click on "Enable Addition...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • You can use an existing textfield, you said :Is there a way to send the user (filling out the form) a receipt email that they have completed the form as well? (similar to the one used in FormCentral) The form has a section where they fill out their e-mail.. Is there a code where I can use to send th...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • Most emails are using ";" as a separator between emails, so if your first email is already written you can add another email after the initial one...e.g. In the exit event of the textfield that requires an email write this line:SendEmailButton.event__click.submit.target = "mailto:initial@email.com;"...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • var sum = 0;var details = this.resolveNodes("po.box[*]");//po.box[*] returns all the objects with the name "box" in the subform "po"for (var i = 0; i < details.length; i++) {    sum += details.item(i).rawValue;}you can do the same with FormCalc

    Type

    Questions

    Views

    914

    Likes

    0

    Replies

    0
  • Once all your colors are set, try using form1.saveXML();

    Type

    Questions

    Views

    1.4K

    Likes

    0

    Replies

    0
  • Actually this is not what i was looking for, I really need to change the script... e.g. I have a button in a expandable table and i want each buttons to have a different messagebox....when the button is created a new script is assigned to the event_click...This is what im looking for...Looks like Li...

    Type

    Questions

    Views

    1.3K

    Likes

    0

    Replies

    0
  • Alright as I understood you want to make a search through the form, or w/e, and return the results in a table but only 5 results at a time...so once your research is done, insert all results in a table... also declare an index to help you browse through this table...var index = 0;var table = [""];ev...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0