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
2009-11-18 07:31:58
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
2009-11-18 07:32:50
A:
you might also want to have a look at this
http://ajaxian.com/archives/even-crazier-times-html-rendering-in-flash
Sarfraz
2009-11-18 07:41:33
+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
2009-11-18 15:24:45