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

americanmn
americanmn
Offline

Badges

Badges
7

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
10

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by americanmn
Customize the badges you want to showcase on your profile
Subform calculations - Adobe LiveCycle 07-03-2012
I am a group of fields that need to add together. Period Payment Cumulative Payment 1. 500 500 2. 500 1,000 3. 500 1,500Ex. Person would enter payment amount and the cumulative payment would add last cumulative pymt to #2 payment.I have set up a subform to add more lines. I can't figure out how to get the new lines to add correctly. Also is is possible to get the Period numbers to go in order with using the add button?

Views

385

Likes

0

Replies

1
Copy table from Excel - Adobe LiveCycle 05-12-2011
Is it possible to copy a table out of excel or word and paste it into an Adobe form? If so when I build the form what do I need to do?

Views

521

Likes

0

Replies

1
Re: if choose something in drop down then checkbox is checked - Adobe LiveCycle 26-09-2011
Thank You...that has helped. How do you make those two parallel lines. I can not figure that out. I just copy pasted from your email.

Views

452

Likes

0

Replies

0
Re: if choose something in drop down then checkbox is checked - Adobe LiveCycle 26-09-2011
I am still having trouble with this. I want to choose a word from the drop down box (that has at least 25 options) and depending on the word I choose i want 1 or 2 checkboxes checked.This is the script i have so far. Right now i have it set up on the drop down box as and exit. if (this.rawValue == "blah")CheckTwo.rawValue == 1;if (this.rawValue == "blah2")CheckEight.rawValue == 2;There are 15 items that would make one check box checked and then 10 for the other checkbox. It would be nice if I co...

Views

454

Likes

0

Replies

0
Re: if choose something in drop down then checkbox is checked - Adobe LiveCycle 16-09-2011
I have at least twenty items to choose from in the drop down box. So i need to script for each possible choice. How do i do that in java script?if (this.rawValue == "blah) CheckTwo.rawValue = 1;elseif (this.rawValue == "blah2") CheckTwo.rawValue = 1:There are probably 10 that check one box and another then that check a different box.Thanks

Views

454

Likes

0

Replies

0
if choose something in drop down then checkbox is checked - Adobe LiveCycle 16-09-2011
I want to pick from a list in the drop down. Depending on what is choosen then a box will be checked automatically. This is what I have so far for script.if (dropdown == "blah") then this.rawValue = 1I am not sure if it should be JavaScript or FormCalc...I assume JavaScript since there is no calculation. I am also unsure whether to put the script on the dropdown box or the checkbox. Also which event do i use?Thanks

Views

3.3K

Likes

0

Replies

7
Re: if then calc - Adobe LiveCycle 26-08-2011
Thank you...How do you get that symbol to show up. The one that means every or?

Views

127

Likes

0

Replies

0
if then calc - Adobe LiveCycle 24-08-2011
I have a numeric field that calculatesa total. I have a text field that I want to look at the numeric field and based on what thenumber field says enter text.This is what I have for my calc right now...its not working...I don't know if it should be formcalc or javaif (TextField2.rawValue == 16 or 17 or 18 or 19 or 20 or 21 or 22 or 23 or 24 or 25){this.rawValue= "Low Risk"}else (TextField2.rawValue == 26 or 27 or 28 or 29 or 30 or 31 or 32 or 33){this.rawValue= "Moderate Risk"}else (TextField2.r...

Views

616

Likes

0

Replies

3
Re: Click two checkboxes to get one value in another field - Adobe LiveCycle 24-08-2011
Thank You...that worked.

Views

131

Likes

0

Replies

0
Click two checkboxes to get one value in another field - Adobe LiveCycle 24-08-2011
I have two check boxes if both check boxes are checked then another field would display a number. How do I get my calcualtion to work?This is what I have so far for the calc.if ((this.rawValue ==1) (CheckBox4.rawValue == 1)){NumericField1.rawValue= 4}

Views

755

Likes

0

Replies

2