Don't know if you've seen this, but maybe it will help you (see
below). I think the example you referenced in your original post was
done in flash 9.
Hope this helps...
--
From
http://www.adobe.com/devnet/flashplayer/articles/fplayer10_security_changes_02.html
POSTs containing file uploads require upload security checks
When a SWF file performs an upload to a server, using the
FileReference.browse and FileReference.upload methods, Flash Player
enforces two security rules:
* FileReference.browse must be called from within a user-event
handler (mouse or keyboard event)
* If the upload goes to a server in a different domain than the
SWF file calling FileReference.upload, a policy file is required on
the target server, trusting the domain of the SWF file
Starting with version 10,0,2, Flash Player enforces these same two
rules at the time any networking API is called to perform a POST that
will appear to the server to contain an upload. The format for these
uploads is called RFC1867, and it consists of a Content-Type of
"multipart/form-data", with a section in the POST body that includes a
"filename" attribute in a "Content-Disposition" header.
----