I'm designing a form on a website and would like to allow people to upload files. Its a trivial matter with HTML, but I can't seem to find a way to do it with flash. I'd like a way to do the flash equivilant of this HTML:
<FORM METHOD="GET" ACTION="/cgi-bin/submit.pl?upload=1&userid=XXX" ENCTYPE="multipart/form-data">
<INPUT TYPE="FILE" NAME="jpegphoto">
<INPUT TYPE="SUBMIT" VALUE="Upload!">
</FORM>
Is this even possible with flash, or should I be opening a new window and do the upload in straight HTML?
<FORM METHOD="GET" ACTION="/cgi-bin/submit.pl?upload=1&userid=XXX" ENCTYPE="multipart/form-data">
<INPUT TYPE="FILE" NAME="jpegphoto">
<INPUT TYPE="SUBMIT" VALUE="Upload!">
</FORM>
Is this even possible with flash, or should I be opening a new window and do the upload in straight HTML?