Quantcast
Channel: Adobe Community : All Content - LiveCycle Designer
Viewing all 5571 articles
Browse latest View live

Paste from Word to fillable PDF and retain original formatting

$
0
0

I have created a fillable PDF form using Adobe Livecycle ES2. End users need the ability to paste into the form fields content that they have copied from Microsoft Word, keeping the original Microsoft Word formatting (including bold, underline, italics, paragraph indents, and especially tables). Of course, when they paste into the fillable PDF, all the formatting is stripped out. How can we overcome this problem? Is there something I need to do to the form fields to make them accept the formatted text and retain the formatting, or is there something that the end user needs to do when copying and pasting? If there is no way to retain the formatting, what is your recommendation for a solution or workaround? Thanks.


Removal of Space within Address lines

$
0
0

I have fields for each of the address parts but no way to bring them together based no the length of the city name.  I end up with a big gap if the city name is short or not enough room if its long.  How do I bring the fields together to eliminate space on address lines?

 

 

Text Fields:

Name

Address1

City

State

Zip

 

Example (current way prints):

 

Johns Auto Body

1234 Main St.

Los Angeles,        CA 90045

 

 

Example (how I need it with space removed):

 

Johns Auto Body

1234 Main St.

Los Angeles, CA 90045

All caps display pattern

$
0
0

Can I make a text field display in "all caps" regardless of how the user entered the text?

Submitting form automatically when the device comes online

$
0
0

Hi Guru's

 

I am developing an offline adobe form that can be opened, filled and submitted on a mobile device like ipad.

 

I am adding a submit button to submit the form. When the device is online submit works and when offline appropriate message is displayed. I was wondering if device or reader submit form (previously submitted offline) automatically again. Is there any mechanism to check if the device is online again and send the pending forms automatically?

 

Thanks in advance.

 

Regards

Sunit

Javascript for populating text field based on dropdown list

$
0
0

Hi,

 

I am trying to write a javascript to populate a "Textfield" based on what I select on a "Dropdownlist" this has a one on one relationship with each other. I tried to embed the script on "Change" category and the script was as follows but it did not work. I'd appreciate if someone can help me with the correct procedure.

 

Thanks,

Vijay

 

form1.#subform[0].DropDownList2[0]::change - (JavaScript, both)

function populateDescription(){

        if (document.subform[0].DropDownList2[0].value=="BIH"){

                    document.subform[0].TextField83[0].value="Burn in and PBI History";

        }

}

ES4 HTML Preview Issue

$
0
0

This question was asked before but the answer did not help me. Where do I find the Server URL for HTML preview? My install was local to C:\Program Files\Adobe\Adobe LiveCycle Designer ES4. Will any server path work for this? (I did not do the install so I have no installation documentation. If the answer to this question is in the installation documentation, I can have the install tech look for it.)

Cancel preSign

$
0
0

The signature field on my pdf form continues to fire even when the person signing selects "Cancel" on the  dialogue box first to appear. All code in the preSign/postSign events fire properly if the use wants to sign. However if the user doesn't want to sign I need to prevent the postSign event from firing. Any ideas?

 

Signature Dialogue.jpg

 

Using:

Livecycle ES 3

Adobe 11 or XI

 

I have researched and found the following discussions but have yet to find an answer.

 

http://help.adobe.com/en_US/livecycle/9.0/designerHelp/index.htm?conte nt=001046.html

http://forums.adobe.com/message/5118501

http://forums.adobe.com/message/3852614#3852614#3852614#3852614

http://forums.adobe.com/thread/787110

http://forums.adobe.com/message/3442843#3442843

Color change working on My computer not on otheres?

$
0
0

This is a question that is really bothering me. I have a check box that says completed that when checked it changes the font color of a drop down list. Which the coding works fine on my machine but when I e-mail it out other people cant seem to get it to function. It is saved as a dynamic PDF when I open it in reader it works fine on my machine I have sent this form to 2 other people and when they test it the functionality isnt there. Please help!!!!!!!! Here is the code that I am using on the exit event of the check box.

 

 

if

 

(CompletedCheckBox.rawValue ==true) {

 

xfa.resolveNode("form1.CSIHANDOFF.SetupTable.SetupRow.ProspectDDL.ui.# choiceList.border.fill.color").value

=

"0,255,0";

}

 

 

 

else

{

 

 

xfa.resolveNode("form1.CSIHANDOFF.SetupTable.SetupRow.ProspectDDL.ui.# choiceList.border.fill.color").value

=

"255,255,255";

 

}


Do not allow spacing in a text field

$
0
0

I have a form where the data will be imported into a database, so we don't want the users to be able to allow spacing when they enter the data.  Is there a way to do this?

 

Thanks, Anne

Require input conditionally

$
0
0

I've created a form with sections that require input based on whether or not a user has entered a title for that section.  However, I cannot get my the script to trigger a message box prior to submitting the form (using a custom button).  Basically, if the user enters any value for field1, they should be required to enter a value for field2

This may be a simple error but my experience with Javascript is limited.

 

form1.#subform[0].Button1::mouseDown - (JavaScript, client)

if (xfa.resolveNode("form1.#subform.TextField3")>"0" && xfa.resolveNode("form1.#subform.Reason_NatureofChange-1")=="0")

{

//xfa.host.messageBox("Please enter a Reason/Nature of Change for every change section submitted.")

}

 

Thanks in advance

Remove last row in table

$
0
0

I have a form that I allow the user to determine how many rows will be displayed in a table.  I am using a drop down list and use the following code. I would like no table rows to display when zero is selected but the last row is always displayed even when zero is selected.  How can I remove the last row.

 

var iRows = xfa.event.newText;

if (iRows == "0") {

    //What code should go here

 

}

else {

    TextField1.rawValue = iRows;

    TrainingReport.TrainingTable.TrainingData.instanceManager.setInstance s(iRows);

}

email address determined by radio button

$
0
0

Hi all!

I am trying to code some javascript that depending on the radio button I choose will determine which email address my form goes to.  I think I am close but I am missing something.  When I click the email button it always moves the radio button to position 1 and we only get the 1st emails.  Here is what I have.

 

var oDoc = event.target;

 

if (Campus.rawValue = "1"){

 

    oDoc.mailDoc({

                            bUI: true,

                            cTo: "mrbecker@uillinois.edu;" + "giftadministration@uif.uillinois.edu;" + "COI@uiuc.edu",

                            cSubject:  EmployeeName.rawValue + " Donor Conflict of Interest Form  ",

                            cMsg: "Additional comments:"

                            })}

                           

else if (Campus.rawValue = "2"){

    oDoc.mailDoc({

                            bUI: true,

                            cTo: "mrbecker@uillinois.edu;" + "giftadministration@uif.uillinois.edu;" + "COI@UIC.edu",

                            cSubject:  EmployeeName.rawValue + " Donor Conflict of Interest Form  ",

                            cMsg: "Additional comments:"

                            })}

                           

else if (Campus.rawValue = "3"){

 

oDoc.mailDoc({

                            bUI: true,

                            cTo: "mrbecker@uillinois.edu;" + "giftadministration@uif.uillinois.edu;" + "COI@UIS.edu",

                            cSubject:  EmployeeName.rawValue + " Donor Conflict of Interest Form  ",

                            cMsg: "Additional comments:"

                            })}

 

Thanks for your help!

Jodi

PDF overall limit?

$
0
0

Hi =)

 

I'm working with LiveCycle ES4 on a pdf that has now 2,29 MB. Is it too much?

I have a lot of code written in javaScript.

 

I'm asking this because now I have unexplained errors in the code.

The "same" code works in some places and doesn't work in others. Is this a thing? LiveCycle has a limit?

 

Thanks =)

How to bold a one word in a textfield

$
0
0
I would like to bold a few randomn words in a sentence used as a rawvalue in a textfield.

e.g. "This word should be bold"

Does someone know how to acheive the above through scripting

Thank you in advance

Aditya

Drop-Down List Local Unbound Data Source

$
0
0

I am very new to LiveCycle, and I am working to create my first form.

 

Long Story:

The form will be in PDF format, for offline use by employees completing the form. The form uses JavaScript asthe default code language. I have a repeating subform containing three (3) fields, all of which are Drop-Down Lists. The first is a 'plain text' description of an item code, the second is the item code itself, and the third has information about the item. I have an access database containing the information from which I exported to XML for deployment to the employee computers so that it can be updated as the lists change. The selection from either the first or second column should complete the others based on the information in the XML file. On the Data View palette I did the following:

     New Data Connection

     Named it 'Codes'

     Selected Sample XML Data

     Selected the File Location for the XML file

     Clicked finish

The data connection shows up in the palette as expected, but in the Hierarchy it changes my form name above master to the data connection, and breaks the code references of the form. I am not binding my form back to a database for data storage, but do intend to allow the users to save the completed form locally.

 

Short Story (or summary):

1.) How do I set Drop-Down Lists to reference a datasource without changing the existing data structure of the form or other fields?

2.) How do I set one box to update another based on this selection?

 

I have read many posts about this topic, but none of which seemed to me to address the question at hand. If I missed the one that does, I apologize and would appreciate being pointed in that direction.


Have you found any software comparable to Livecycle Designer?

$
0
0

I am curious to know if there is any software out there that is able to create dynamic pdf forms like Designer.  I know there are a lot of pdf creators but I am curious to know if there is anything that is able to layout forms with all the different field types that Designer does?  I am just curious as my employer is asking about what options we have for an upcoming project.

Hidden subform XML extracted?

$
0
0

Hi,

 

I have a hidden subform with 2 objects(dropdown), when I try to extract the .xml the hidden subform dropdown values comes in that. Can anyone please suggest why is this happening?

 

Thanks.

Attach Static Files to a Template?

$
0
0

I have designed a questionnaire that references three appendices.  These appendices are informational only and require no action by the recipient.  Is it possible to attach these files to a template so that a user can access them by clicking on a button or through a link?

 

I am a very new and very basic LiveCycle user and hope that I have described what I am trying to accomplish clearly.

Repeating Subforms within Tables and Subforms

$
0
0

Hi, again =)

 

I have another question.

I'm working with LiveCycle ES4 on a xml form (xdp).

 

In this form I have a table with a repeating subform within a row. And inside this subform I have another repeating subform.

It works like this: the first subform contains data of a category and the other subform contains data of a subcategory.

There can be multiple categories and within each category it's possible to have several subcategories listed.

 

Ok, having said that, my real problem is this one: I can set the header of the table to repeat itself each time the table breaks to the next page but I want the category to repeat also in case the parent subform breaks and I can't.

 

I tried a billion things to make this work, like putting a table inside a table. But I cannot make both headers to repeat themselves.

 

Can anyone help me with that?

 

 

..I have also another question: How can I prevent the silly single header that has no rows attached from appear in the bottom of the page?

 

Thanks again.

This community has been very helpful! =)

How to create a submit or save as pdf button?

$
0
0

I am rendering my forms as HTML forms using form manager and viewing them in the browser, on the desktop and on android smartphones.

The problem is, it seems like the only way to save your entries from these browser-rendered forms is by printing (CTRL+P) which screws up the layout, it will make a 1 page form break in half and print on 2 pages and things like that.

 

So, is there a way to save these html forms (once filled out) as a pdf again and keep the layout intact? How about a "Submit" button that at least saves the filled form?

Viewing all 5571 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>