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

TingZilla
TingZilla
Offline

Badges

Badges
10

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
1

Posts & Comments

Posts & Comments
21

Discussions

Discussions
0

Questions

Questions
9

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by TingZilla
Customize the badges you want to showcase on your profile
Re: How can I replace a series of tags in text? - Adobe LiveCycle 14-10-2014
I found the solution via some extended searching in these forums. I had figured there must be a way to loop through a string, removing/replacing multiple values. Here is the FormCalc syntax to do it, placed on the layout ready event.$.rawValue = Replace( Replace($.rawValue, "[V1]", ""), "[V2]", "")

Views

964

Likes

0

Replies

0
How can I replace a series of tags in text? - Adobe LiveCycle 06-10-2014
I am using LiveCycle Designer 10.4 in the SAP environment to create PDF customer quotes. All data is fed into my layout from the SAP system.Some of the legal text has variables that are automatically populated by the quoting system. The text is fed into my layout with the variables called out by bracketed tags. My mission is to remove the bracketed tags so they do not display in the output that goes to the customer. For example, in the image below, I want the [V1], [/V1], [V2], and [/V2] to be r...

Views

1.3K

Likes

0

Replies

2
Re: Why doesn't new field label/caption replace the old caption? - Adobe LiveCycle 24-09-2014
I wish. There are no scripts running that would affect the caption text. However, I did find another workaround, which is to set the caption text by script to what I want it to be. Which doesn't explain why I can't type in a new caption and have it just work, but it's faster than re-creating a field from scratch.

Views

451

Likes

0

Replies

0
Why doesn't new field label/caption replace the old caption? - Adobe LiveCycle 23-09-2014
My customers change their minds quite a bit about the language that should appear on their printouts, which I'm creating using LiveCycle Designer. I have seen a recurring issue: When I paste a new caption into the Field Tab or into the Caption Reserve directly, the new copy doesn't appear on the printout.It appears in the layout, in the Field/Caption box, but when I create my PDF, the old value is displayed.Why? Is there something I should be doing to purge the old value? My current workaround i...

Views

609

Likes

0

Replies

2
Re: How to remove decimal and trailing zeroes for obscure currencies? - Adobe LiveCycle 29-05-2014
That works perfectly! Thanks!

Views

665

Likes

0

Replies

0
How to remove decimal and trailing zeroes for obscure currencies? - Adobe LiveCycle 29-05-2014
I am working on layouts for my company's quoting system. We quote products globally.I'm doing fine with major currency formatting, but Korean currency has me stumped. I need to remove the decimal and trailing two zeros if the currency is Korean.I have tried the following using FormCalc:if (subform_Hidden.Currency.rawValue == "KRW") then Format("$zzz,zzz,zz9", sub_PriceSummary.ItemsTotal.TotalOfAll.ZZTotalValue.rawValue)endifandif (subform_Hidden.Currency.rawValue == "KRW") then sub_PriceSummary....

Views

1.1K

Like

1

Replies

2
Re: Columns hide, but their header reappear on subsequent pages - Adobe LiveCycle 22-04-2014
An update, should anyone be interested in how we solved this problem.We ran the first if statement (in initial post) on the table initialize event, although we did not set the presence to invisible, we simply nulled the value of the caption and reset the column widths.Then, on the layout ready event, we ran an if statement in the appropriate header cell to hide its presence. Example:if (data.EnglishPage1.subform_Hidden.ZZHIDE_DISCOUNT == "X") then $.presence = "hidden"endifWorked like a charm.

Views

778

Likes

0

Replies

0
Columns hide, but their header reappear on subsequent pages - Adobe LiveCycle 14-04-2014
I am developing a form to present product quotes to my company's customers. In some cases, we show the list price and discount.In other cases, we don't show the list price and discount.I've been able to null out the table column headers and hide the data by resizing column widths. However, the column headers come back on the subsequent pages and overlap each other. The image below shows what happens on subsequent pages.Here's my script://Hide Discount = X; hide listprice and discountif (data.Eng...

Views

2.0K

Likes

0

Replies

1
Re: How can I calculate the sum of the first two rows in a table? - Adobe LiveCycle 11-04-2014
That didn't work either. Sad face!I have solved the problem by asking the developer I am working with to perform the calculation prior to the data merge with the layout.But I'd really like to figure out why I can't do it in the form, because I should be able to.

Views

477

Likes

0

Replies

0
How can I calculate the sum of the first two rows in a table? - Adobe LiveCycle 10-04-2014
I have a table with a repeating row that, when data is merged, always has three rows:Support type 11,234,456Support type 2221,556Interest11.222I have a field where I want to show the sum of Support types 1 and 2. I do not want to add the interest to this.I'm using FormCalc with the following script on the calculate event of the Total field, which is in the same subform but not in the table:data.JP_Page1.subform_Hidden.sub_SupportTotals.NumericField1::calculate - (FormCalc, client)$.rawValue = Su...

Views

989

Likes

0

Replies

2
Likes given to
Likes from