-------------------------------------- SIMPLE CONTACT FORM WITH DROPDOWN MENU -------------------------------------- FILES INCLUDED: simple_contact_formv2.fla simple_contact_formv2.swf scf_sendmail_v2.php simple_contact_formv2.html readme.txt --------------------------------------- ***Make sure your web server supports PHP or this form will not work. You need to upload the file to your server to test after you make your customizations. --------------------------------------- EDITING THE FORM To edit anything on the form you should open 'simple_contact_formv2.fla' in Flash 8 or higher. CUSTOM BACKGROUND COLOR To edit the button backgrounds, once you have the .fla open, double click the 'contact form' movieclip. Locate the send and reset buttons and double click the 'send_btn' and 'reset_btn' movie clips (not the text that says 'send', the actual colored button behind the text). You can change the appearance of it's UP, OVER, DOWN, and HIT state. FORM BACKGROUND COLORS To change the grey backgrounds select the 'form backgrounds' layer inside the 'contact form' movieclip. The colored squares are located beneath each text field. CHANGING COMBO BOX COMPONENT OPTIONS To change the available options in the dropdown menu, double click the 'contact form' movieclip and select the ComboBox component. In the properties box, select the 'Parameters' tab. Double click the row titled data and edit each item respectively. Once you have added all of the values for this row, make sure that hey match the values under the labels row. CHANGING THE RADIO BUTTON OPTIONS To change the labels next to each radio button, first, select the radio button. Locate or open the Component Inspector. Under the Parameters tab, locate 'label' under the Name column. To the right of the name 'label' click the value and type in the text you would like displayed. EDITING THE TEXT NEXT TO THE CHECKBOX The text to the right of the text box is a static text field. So all you'll need to do is click the text itself to edit it. CHANGING SOME OF THE FIELDS TO NOT-REQUIRED If for some reason you would prefer one or two of the fields to not be required, first make sure you are inside the 'contact form' movieclip. On the layer named actions click the first frame. In the properties inspector, click the actions tab. Search for the following code: if( sender_name.text == "" || sender_email.text == "" || ComboBox_text.text == "" || sender_message.text == "" ) Currently, these are the fields required before the message can be sent. If you'd like to remove the 'Details/Message' from this list of required fields simple delete || sender_message.text == "". It should look like this: if( sender_name.text == "" || sender_email.text == "" || ComboBox_text.text == "" )