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

student131
student131
Offline

Badges

Badges
7

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
15

Discussions

Discussions
0

Questions

Questions
6

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by student131
Customize the badges you want to showcase on your profile
Re: Resetting drop down value - Adobe LiveCycle 11-10-2011
Thank you for the form Steve. So here's how it works (in terms of the form - I'm not considering the zip-code dropdown).1) The "Change" dropdown is a required filed. It will always have either Yes or No.When you click on the "Change" dropdown, and change the current value (Yes to No or No to Yes). You are prompted (messagebox): "Do you really want to do it?"If you select "Yes" on the messagebox, say the city values change. If you select "No" or "Cancel" the city values don't change. Also, the va...

Views

160

Likes

0

Replies

0
Re: Resetting drop down value - Adobe LiveCycle 11-10-2011
Say there are two values in the drop down. Yes and No. Suppose the current value selected is "Yes". Now the user selects "No". I need to warn him that this might cause some data to delete/change. If the user confirms to make the change (by clicking OK on the messagebox) I proceed as intended. (Upto here, there's no problem)But if the user declines to proceed (by clicking 'Cancel' on the messagebox). I wouldn't go ahead with the changes (this is not a problem as well). I also need to revert the d...

Views

150

Likes

0

Replies

0
Resetting drop down value - Adobe LiveCycle 10-10-2011
I have a dropdown and based on the option selected, a bunch of thing happen. In order to prevent accidental change, I need to display a warning message to ask the user to confirm the change. If the user confirms, the drop down option is changed. If he declines, the drop down need to revert to previous value.I am not being able to revert back to the previous value. Here's my script (firing on "change" event). var previousText = xfa.event.prevText;var currentText = xfa.event.newText;//app.alert("p...

Views

786

Likes

0

Replies

4
How to reference JavaScript functions stored in a script object on a different page? - Adobe LiveCycle 17-08-2011
Hi,I have a form which has 2 pages. I have a bunch of JavaScript functions under script objects on page 1. How can I access these functions from page 2?I tried the following but none of it work:form1.page2.#variables[0].testScript.doThisNow();form1.page2.variables[0].testScript.doThisNow();form1.page2.variables.testScript.doThisNow();Please help.

Views

388

Likes

0

Replies

2
Re: Adding Watermark to a dynamic XML form - Adobe LiveCycle 01-12-2010
Thank you for the clarifications, guys.I just put some text on the content page in Designer. Too bad I wasn't able to angle it and make it less opaque.

Views

266

Likes

0

Replies

0
Re: Adding Watermark to a dynamic XML form - Adobe LiveCycle 01-12-2010
Yes, I'm trying to do something in designer. I wish there was a way to :1) rotate the text2) set the opacity of the textPlease help if you know how to do either of the above.

Views

278

Likes

0

Replies

0
Adding Watermark to a dynamic XML form - Adobe LiveCycle 01-12-2010
How can I add a Watermark to a dynamic XML form? Do I need to do it in the designer?I tried Document -> Watermark -> Add, on the pdf itself, but get a message that I don't have permissions.Please help. I need it done urgently.

Views

2.2K

Likes

0

Replies

6
Re: Date issue - Adobe LiveCycle 15-01-2010
Thanks RaghuThat was silly to miss "new" there

Views

158

Likes

0

Replies

0
Date issue - Adobe LiveCycle 15-01-2010
Ok, this should be very simple but I am stuck.I want to get the Month, Day and Year for the current day. Here's my script:var tDate = Date(); app.alert("tDate is: " + tDate );// get today's monthvar M = tDate.getMonth() + 1; // 0 based app.alert("M is : "+ M );var D = tDate.getDate(); // get today's dayvar Y = tDate.getFullYear(); // get today's yearI get the tDate, which is correct, but I can't get the month, day and year. Please help.Thanks!Student

Views

697

Likes

0

Replies

2