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

sredden1
sredden1
Offline

Badges

Badges
8

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
20

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by sredden1
Customize the badges you want to showcase on your profile
Re: Deselecting a radio button... - Adobe LiveCycle 25-10-2012
I have several radio buttons on a form, each of them separate/singular (not in groups). I'm wanting to be able to de-select the radio buttons once they've been selected. I know I can use checkboxes instead, which is what I'd prefer, but the customer is set on radio buttons.I've tried putting the following script in mouseDown event:this.initValue = this.rawValue;And this script in the mouseUp event:if(this.initValue == this.rawValue) { this.rawValue = 0; } I also tried the script in Niall's reply...

Views

775

Likes

0

Replies

0
Re: Need to find a specific word in a Text Field - Adobe LiveCycle 24-10-2012
Try:if (this.rawValue.match(/Excel/gi) ...

Views

190

Likes

0

Replies

0
Re: Deselecting a radio button... - Adobe LiveCycle 24-10-2012
I'm having the same issue, but I need the radio buttons in separate groups unto themselves...I tried using the script(s) in the mouseUp/mouseDown events, but it didn't work.What can I do?

Views

487

Likes

0

Replies

0
Re: Counting the number of values selected in a list box - Adobe LiveCycle 16-10-2012
Excellent, thank you very much.

Views

223

Likes

0

Replies

0
Re: How to unload XML after loadXML()? - Adobe LiveCycle 16-10-2012
Try changing your third parameter to true when you're loading the new xml string:xfa.datasets.loadXML(xmlString,false,true);That should overwrite the existing...

Views

161

Likes

0

Replies

0
Counting the number of values selected in a list box - Adobe LiveCycle 16-10-2012
I'm trying to add a counter to a form that tells the user how many values have been selected from a list box... I tried adding a FormCalc formula to a calculate event in the "counter" field as follows:count(form1.#subform[0].ListBox1.rawValue)But for some reason it's not adding them up. It only gives me a value of 0 when none are selected, or 1 where any number of selections are made.Can anyone help me out? Thanks in advance

Views

1.1K

Likes

0

Replies

2
Re: Populate cc field based on dropdown list values - Adobe LiveCycle 15-10-2012
What would the syntax be for a nested if statement? I'm wanting to add a condition that another (different) message pop up if a separate field is left blank instead of (or in addition to) these two fields.

Views

296

Likes

0

Replies

0
Formatting text in an e-mail - Adobe LiveCycle 29-08-2012
I have a text string that I named as a variable called "message" that is included in an e-mail when the user clicks the submit button on my form... I'm trying to see if there's a way to format the string/variable so that the text in the e-mail is bolded, with a larger font size than the default..I tried message.fontsize().bold() , but all that does is add the HTML tags to the text, instead of actually converting the text per the instruction.What can I do here?

Views

547

Likes

0

Replies

1
Re: Is there a way to include a confirmation message when a form is successfully submitted? - Adobe LiveCycle 29-08-2012
I figured that was probably the case... Doesn't hurt to check Another question - Can something be specified in the event.target.mailDoc verbiage (or anywhere else) to have a delivery receipt sent?

Views

253

Likes

0

Replies

0
Re: Is there a way to include a confirmation message when a form is successfully submitted? - Adobe LiveCycle 28-08-2012
Okay, I fixed it (tentatively) using xfa.host.messageBox in the click event... One problem, though -- the message appears even if the user cancels/closes out of the e-mail instead of sending.Any way to get around this?

Views

250

Likes

0

Replies

0