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

Sonic42
Sonic42
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
5

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Sonic42
Customize the badges you want to showcase on your profile
Re: AEM Designer 6.5 and PDF 2.0 (ISO 32000-2) - Adobe Experience Manager 23-07-2020
That is correct, it will XFA Based PDF

Views

418

Like

1

Replies

0
Betreff: For loop with multiple variables and math calcul... - Adobe LiveCycle 30-05-2020
I think you should change the formula the following way, to get the right results. var Fields = xfa.resolveNodes("CommRtng[*]"), Answered = 0, Values = 0, Rating = 0, i; for (i = 0; i < Fields.length; i += 1){ if (parseInt(Fields.item(i).rawValue, 10) > 0) { Answered += 1; Values += parseInt(Fields.item(i).rawValue, 10); } } Rating = 100 / (Answered * 5) * Values this.rawValue = Rating; To fire this calculation just once, put the script into a click event of a button so it's executed only when t...

Views

1.4K

Like

1

Replies

0