Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

loather
loather
Offline

Badges

Badges
9

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
2

Posts & Comments

Posts & Comments
15

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by loather
Customize the badges you want to showcase on your profile
Re: Code128 software barcode properties - Adobe LiveCycle 25-03-2019
1] I had read about "moduleWidth" and "moduleHeight" but only in context of 2D barcodes.But it works fine on 1D barcodes also:Go to XML Source and add the "moduleWidth" attribute to the element, eg: ......This then allows me to make a barcode field as wide as the page and the module width overrides any other calculation which is done, keeping consistent density for however many characters are passed for barcoding.

Views

1.3K

Likes

0

Replies

0
Re: Livecycle over/underflow error - Adobe LiveCycle 22-03-2019
I will guess your script is in the "calculate" event of a 3rd field.You can add a bit more in the script to try to help you understand the error.For information: Overflow means it calculated a value too large to handle and underflow means it calculated a value too small to handle. Either case suggests something is wrong because I guess you have "every day" kind of values in the hundreds/thousands/millions kind of range.Try the following [I slightly extended your 'if' so it requires a value in Nu...

Views

899

Likes

0

Replies

0
Code128 software barcode properties - Adobe LiveCycle 21-03-2019
We use code128 symbology considerably and the options for this in Livecycle seem a bit strange.There is this property 'Data length' which appears to adjust the density of the barcode but in an 'inverse manner':Usually one specifies a 'module width' - which is the width of the thinnest constituent of the different bar patterns that make up each encoded symbol.Larger module width means less dense [wider] barcodes.But here, the larger the value of 'Data length', the denser the barcode is rendered.H...

Views

1.7K

Likes

0

Replies

1
Re: Table with multiple body rows (table section), how to bind data? - Adobe LiveCycle 19-03-2019
Thanks for this,I was just reading in a "best practices" document about Livecycle which happens to give an example of a multiline table and the first thing it says to do is use nested subforms to emulate a table.So whether subform sets are used or not, it seems that the main point is "don't try to do this with a table object".

Views

5.7K

Likes

0

Replies

0
Re: Align fields side by side - Adobe LiveCycle 14-02-2019
Magus069 probably has the correct answer, but provided you are not adding in a flowed subform it should just be a case of enabling "snap to object" in the drawing aids, then drag+drop.You do seem to need to zoom in or out a bit if the design is "busy", to make sure it is snapping correctly.

Views

1.3K

Likes

0

Replies

0
Re: Table with multiple body rows (table section), how to bind data? - Adobe LiveCycle 14-02-2019
Today I found myself with this problem in another area.I went with a different workaround that requires no scripting:1] do not create any table section and just stick with 1 body line in the table2] wrap each cell object of the table line in a subform [so the subforms become the actual cell objects]3] make the subforms 'positioned' and make them the height of 2 rows4] place 2 text-fields or whatever above each other in the subforms and bind them to the correct elements of the data table row5] if...

Views

5.7K

Likes

0

Replies

2
Re: Table with multiple body rows (table section), how to bind data? - Adobe LiveCycle 07-02-2019
It feels so dirty but for now I've gone with a kluge:In body-line 1 I took 1 of the existing text fields & wrapped it in a subform. I then added another text field in the subform, bound it to the data element I need & made its presence hidden.In body-line 2, I have a text field and used the Initialize event to set the value from the hidden text field of body-line 1.Works but there must be a "proper" way I've yet to figure out...The trouble with all this stuff ["business development"] is that the...

Views

5.7K

Like

1

Replies

3
Table with multiple body rows (table section), how to bind data? - Adobe LiveCycle 06-02-2019
My general understanding of data binding is "vague" at best but currently I am struggling with a table that should have multiple body-lines.As best I understand it, the binding for the table of data is made against the body row, NOT the table.This then causes the rows to repeat for each row in my XML source data.However, I have a large number of columns in my table and it requires multiple body-lines for each row of the data table.I've created a 2nd body-line and wrapped both body-lines in a tab...

Views

6.2K

Like

1

Replies

4
Re: get row values from second table of data - Adobe LiveCycle 04-02-2019
... and that is exactly how not to post code... Why did it insert blank lines? Grrrr.

Views

1.1K

Likes

0

Replies

0
Re: get row values from second table of data - Adobe LiveCycle 04-02-2019
Thanks for your answer, unfortunately I cannot link directly by row index, since there may not be an entry in Row1 for the value in Row2.However, I read through this thread this morning [made more sense than when I saw it on Friday]:Reading Data from a Table using loopand I finally have something working, a bit like thisvar rowCount = Table1._Row1.count;var i = 0;//this.text = "hidden";this.field = "";//for (i = 0; i < rowCount; i++) {if (xfa.resolveNode("Table1.Row1[" + i + "].Reference_Line")....

Views

1.1K

Likes

0

Replies

0
Likes given to
Likes from