not even if you have php installed? With a php file? Why is that?
But.... flash also offers POST. Is it the same with that, though?
You'd have to understand the basic workings of HTTP to understand this. To send a request via HTTP, be it GET, POST, HEAD, whatever, the program (or script, in your case) must connect to an HTTP server, to which it sends something like this (to get http://mysite.com/dir/fish.html):
Code:
GET /dir/fish.html HTTP/1.1
Host: mysite.com
Note the two linebreaks on the end. The server then responds with some information about the resource and the result of the request:
Code:
HTTP/1.x 200 OK
Date: Sun, 18 Jun 2006 10:31:16 GMT
Server: Apache
Connection: Close
Content-Type: text/html;charset=Shift_JIS
(again, note the two linebreaks on the end), before proceeding to send the requested data. Both examples were simplified for the purpose of demonstration, but perfectly accurate; you can try it in telnet if you're a fast typist. As you can see. HTTP is very different from accessing a local file, so unless there's a webserver running on the local computer, it's not going to happen. Flash may provide some sort of HTTP-styled wrapper for opening local files, but I doubt it; from what you say (that it offers both GET and POST to local files) I think that you're simply wrong. 
I daresay it has a more suitable function for accessing local files. You should go through the docs again.
Bookmarks