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

peppemonkey
peppemonkey
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
9

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by peppemonkey
Customize the badges you want to showcase on your profile
Re: Link 2 radio button - Adobe LiveCycle 11-04-2012
add a Textfield, delete the caption and make it invisible. Then put this on the calculate event:If (RadioButtonList1.rawValue + RadioButtonList2.rawValue >= "1") thenRadioButtonList1.mandatory = "error"RadioButtonList2.mandatory = "error"endifthe vales of the radio buttons have to be numeric for this to work though.

Views

162

Likes

0

Replies

0
Re: Radio Button Mandatory Based on Previous Radion Button - Adobe LiveCycle 11-04-2012
Try it with out the "If "statement since radio buttons are either one or the other. form1.#subform[0].Table7.Row1.#subform[0].WoundRadio.WoundRadio1::click: - (JavaScript, client) CleanseRadio.mandatory="disabled";form1.#subform[0].Table7.Row1.#subform[0].WoundRadio.WoundRadio2::click: - (JavaScript, client) CleanseRadio.mandatory="error";Also, make sure you reference CleanseRadio if it's not in the same place as WoundRadio. (ex: Table6.Row1.#subform[0].CleanseRadio)

Views

202

Likes

0

Replies

0
Trouble using the cursor to select pdf form text precisely - Adobe LiveCycle 28-03-2012
When trying to select a bit of text that is in a Text object (as opposed to a Text Field) on a form, the cursor highlights multiple other text objects on the page. I'll try to replicate this below:Is this just the nature of pdf documents, or is it something that can be prevented.I've made sure to give each text object its own name but the problem persists.Let's say I was trying to highlight just the end of this sentence.Notice that other text are selected as well. This would happen in a form whe...

Views

928

Likes

0

Replies

1
Re: if or else statement - Adobe LiveCycle 19-03-2012
You could add a textfield and put your script that textfield's change event and then make that new textfield invisible. Just make sure that your bracket after "else" is the correct way.

Views

279

Likes

0

Replies

0
Re: Update the value of an already clicked checkbox - Adobe LiveCycle 25-05-2011
I had the code in the "click" event. I moved it to the calculate event and it works better --when a change is made to one of the numeric fields, the textfield goes blank until the checkbox is clicked again. (Instead of the numbers not changing at all until the checkbox is cleared and rechecked) Here is the code on the check box:form1.ItemWorksheet.CheckBox1::calculate - (FormCalc, client)if (this.rawValue == "1") thenTextField1.rawValue= Concat(NumericField1, " of ", NumericField2, " items.")els...

Views

175

Likes

0

Replies

0
Update the value of an already clicked checkbox - Adobe LiveCycle 25-05-2011
Hi, I still have a lot to learn about LiveCycle coding, so any help will be greatly appreciated.On my form, when a certain checkbox is clicked, It adds this optional string to a textfield:"x of y items"x and y are defined by user entered numeric fields.If a users changes one of these numeric fields after checking the checkbox, the change does not show up unless the user unchecks and rechecks the checkbox. (the checkbox has an If statement on the click event which is basically; if on, Concat nume...

Views

767

Likes

0

Replies

3
Re: Using a dropdown box to change the specified value of a radio button? - Adobe LiveCycle 25-03-2011
Ok, so now I've done that...But is there a way to change that value with another field (ie when a user chooses "red" or "blue" in a dropdown box) so that the concatenated message reflects both the users choice of color and the availibility?I'm guessing I should probably use an intermediary text box and putInterText.rawValue = Concat ("We have ', dropdown1, " hats today") in the change event of the available radio button and: InterText.rawValue = Concat ("We do not have ', dropdown1, " hats today...

Views

155

Likes

0

Replies

0
Using a dropdown box to change the specified value of a radio button? - Adobe LiveCycle 24-03-2011
I have a form that generates the body text for an email.First there is a dropdown box in which the choices are either "red" or "blue"Further down the page, there is a radiobutton list with 2 items "available" and "unavailable".The specified values for these items (as defined on the binding tab) are "have blue hats" or "do not have blue hats".This value is concatenated in the email body textfield which is to be copied by the user to an email body:Concat("Dear", NameField, "," We ", RadioButtonLis...

Views

617

Likes

0

Replies

3
Using scripting to apply the same formatting to multiple fields - Adobe LiveCycle 04-03-2011
I have four text fields that when a certain checkbox (CompleteClosure) is clicked become required, accessible, and have a red border.When a different checkbox is clicked, they become not required, readOnly, and gray bordered. My scripting on each box contains many lines:form1.#subform[0].CompleteClosure::click - (JavaScript, client)Page1.DivisionalClosure.rawValue =0;Page2.PartialClosure.rawValue = 0;//DivisionalClosure and PartialClosure are the other checkboxesPage1.CompleteDate.mandatory = "e...

Views

459

Likes

0

Replies

0
Likes given to