- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI use adobe livecycle to create a form. A button is created, and when it is clicked, all of the data will be submitted to link like submitdata.asp (URL).
Q1: When it is clicked, I want to be able to gray out the background area and do not allow any changes.
Q2: After it is clicked, a default box (connecting) is popped in the middle, I guess it is default action by adobe. and also have stop button there. How can I take out that popup and have a customized popup to show something like "it is connecting, please wait..."
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: mohan_sekarPosted on 2009-09-23 at 04:52:44ID: 25402035
About your 1st question, you could make the fields readonly using the following code. You can even change the color, but I don't have the exact syntax - check Adobe Javascript API reference on adobe's website.
nly = true;
try
{
for ( var i=0; i<this.numFields; i++)
{
var fname = this.getNthFieldName(i);
this.getField(fname).reado
}
}
catch (ex)
{
app.alert(ex);
}