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

patrick_rodgers
patrick_rodgers
Offline

Badges

Badges
8

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
23

Discussions

Discussions
0

Questions

Questions
6

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by patrick_rodgers
Customize the badges you want to showcase on your profile
Re: Assigning value to selection for drop down list - Adobe LiveCycle 20-03-2010
For this portion, skip the log in page. Preview the document, go to the 7th page (has New Buildings? on the right) and select Yes.When the number of new buildings goes to zero, I want the dropdown list to go to No or better yet "" (no answer).

Views

197

Likes

0

Replies

0
Re: Assigning value to selection for drop down list - Adobe LiveCycle 20-03-2010
The problem is with the NewBuilding_SF.

Views

193

Likes

0

Replies

0
Re: Assigning value to selection for drop down list - Adobe LiveCycle 20-03-2010
https://acrobat.com/#d=gCB-ZkCeVW96DBQnqmxOZQ

Views

195

Likes

0

Replies

0
Re: Assigning value to selection for drop down list - Adobe LiveCycle 20-03-2010
Logged in, but where do I find #3 Action?Having issues looking to retrieve prevText as well.

Views

194

Likes

0

Replies

0
Re: Lifetime of variables - Adobe LiveCycle 20-03-2010
Got it to work. We forgot to turn the integer back into a string.i = parseInt(autoNumber.value);i++;autoNumber.value = i.toString (10);Thanks,Patrick

Views

103

Likes

0

Replies

0
Re: Lifetime of variables - Adobe LiveCycle 17-03-2010
autoNumber.value= 1 + parseInt (autoNumber.value);Doesn't do the adding.So, I am drawing a blank on why it isn't working,Thanks,Patrick

Views

102

Likes

0

Replies

0
Re: Assigning value to selection for drop down list - Adobe LiveCycle 17-03-2010
Dear Srini,Your answer is the one I expected to work. You are on to something about acess to the correct node.I tried a direct reference to the drop box form1....dropdownlist.rawValue and in Javascript it says it doesn't recognize "form1". Not sure if I am up against an upper limit of file size or why it is acting up. If I did this.parent.parent...dropdownlist.rawValue the reference is to a null node.Thanks,Patrick

Views

197

Likes

0

Replies

0
Re: Assigning value to selection for drop down list - Adobe LiveCycle 15-03-2010
Tried it without success.Am using this.parent...parent.drop_-box.rawValue = "No";

Views

193

Likes

0

Replies

0
Re: Lifetime of variables - Adobe LiveCycle 15-03-2010
Tried it this moring, the first go round was coming out N_1, N_11, N_111 rather than N_1, N_2, N_3.Global variables seem to want to be text, and tried to cast the text as a number without luck.var BldgNumber = null;BldgNumber= "N_" + autoNumber.value; autoNumber= autoNumber.value + 1;return BldgNumber;

Views

102

Likes

0

Replies

0
Lifetime of variables - Adobe LiveCycle 14-03-2010
Trying to create an autonumber field - just need a set of unique names.Have a function in a script object that does the creation with the autoNumner variable located at the top of the script object outside of the function and starts off as null.form1.#variables[0].Misc - (JavaScript, client)var autoNumber = null;function generateNewBldgNumber (){ var BldgNumber = null; if (null == autoNumber) { autoNumber = "1"; } BldgNumber = "N_" + autoNumber; autoNumber = (autoNumber * 1) + 1; return BldgNumb...

Views

809

Likes

0

Replies

6