Contact form actionscript - help

Hi all,

I have a form, and the mandatory fields are 5 text fields.
In order for the send button to work, the 5 text fields need to be filled out.

It works fine, however i wan’t to add a check box to be apart of the mandatory fields.

How can i add the checkbox to the below?
Also in flash 8, when addinig a checkbox, how can the text besides it be edited?
By standard it says “checkbox” besides the box and cannot be removed…

{
if(Siam.text != ‘’
&& Srstatus.text != ‘’
&& Sname.text != ‘’
&& Semail.text != ‘’
&& Sprivacy.text != ‘’
)
{
// enable btn
sendMC.sendButton.enabled = true;
} else {
// diable
sendMC.sendButton.enabled = false;
}

:smirk: