views:

79

answers:

4

I would like to know that how we could send out data from a flash movie to html , php, aspx page so that that data could use for further calculation.

A: 

You would normally do a POST or GET from the flash movie (using the URL of a PHP or whatever page you have on your server). The server page would then process the parameters in the POST or GET.

Example: http://www.actionscript.org/forums/showthread.php3?t=145421

UpTheCreek
A: 

Flash has a bridge to the page that contains it that will allow you to interact with that page via JavaScript. It is called ExternalInterface.

I missed the 2.0 tag there. Don't know if this is still applicable with AS2

Joel Hooks
A: 

you might also want to have a look at this

http://ajaxian.com/archives/even-crazier-times-html-rendering-in-flash

Sarfraz
+1  A: 

You can use the URLLoader class for communications between the flash movie and whatever you have at the server. See this answer for sample code and links.

Amarghosh