PDF-Forms is a service provided by PDFzone.com | http://www.pdfzone.com/
__________________________________________________________________

If I understand what your trying to do, try attaching the following
script to a Mouse Up on the first check box.  This script presumes the
check boxes are named Check Box1 and Check Box2 with Check Box1 having
an Export Value of Yes.

var f=this.getField("Check Box2");
if (event.target.value=="Yes") {
f.hidden=true;
}

else if (event.target.value!="Yes") {
f.hidden=false;
}

Hope this helps.

JL


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Brent Hilburn
Sent: Tuesday, September 02, 2003 1:52 PM
To: [EMAIL PROTECTED]
Subject: [PDF-Forms] Multi Check Boxes

 

PDF-Forms is a service provided by PDFzone.com | http://www.pdfzone.com/
__________________________________________________________________


PDF-Forms is a service provided by PDFzone.com | http://www.pdfzone.com/
__________________________________________________________________

I have a form that has 2 check boxes on it. I would like to be able to 
"hide" one if someone checks the first one so that the second cannot be 
checked. I've got that part down with no problem...

Where the problem comes in is I want the check box to return if they
change 
their mind and uncheck that box...

And it should work this way... Check box 1 and box 2 disappears...
Uncheck 
box 1 and box 2 reappears and visa versa...

Can this be handled inside of 6.0 or will I need specific java script to

handle it? And if so, could someone point me to the correct JS?

Many THANKS!

Brent Hilburn

_________________________________________________________________
MSN 8: Get 6 months for $9.95/month.
http://join.msn.com/?page=dept/dialup


To change your subscription:
http://www.pdfzone.com/discussions/lists-pdfforms.html


To change your subscription:
http://www.pdfzone.com/discussions/lists-pdfforms.html


To change your subscription:
http://www.pdfzone.com/discussions/lists-pdfforms.html

Reply via email to