For a tutorial on creating forms, see www.adobe.com/go/vid0160.
For a tutorial on styling forms with CSS, see www.adobe.com/go/vid0161.
You can use images as button icons. Using an image to perform tasks other than submitting data requires attaching a behavior to the form object.
You can create a file-upload field that lets users select a file on their computer—such as a word processing document or graphics file—and upload the file to the server. A file field looks like other text fields except it also contains a Browse button. The user either manually enters the path to the file they want to upload, or uses the Browse button to locate and select the file.
Before you can use file-upload fields, you must have a server-side script or a page capable of handling file submissions. Consult the documentation of the server technology you use to process form data. For example, if you use PHP, see “Handling files uploads” in the online PHP Manual at http://us2.php.net/features.file-upload.php.
File fields require that you use the POST method to transmit files from the browser to the server. The file is posted to the address you specify in the form’s Action box.
Select the text field object, and set any of the following options in the Property inspector:
Select the List option to list some or all the options when the form is displayed in a browser, to let users select multiple items.
Use the Plus (+) and Minus (–) buttons to add and remove items in the list.
Enter label text and an optional value for each menu item.
Each item in the list has a label (the text that appears in the list) and a value (the value that is sent to the processing application if the item is selected). If no value is specified, the label is sent to the processing application instead.
Use the up and down arrow buttons to rearrange items in the list.
Items appear in the menu in the same order as they appear in the List Values dialog box. The first item on the list is the selected item when the page is loaded in a browser.