Flash and Perl interface
Flash and Perl interface
- Started
- Last post
- 1 Response
- wade
Anyone know if Flash can interface with Perl scripts? If so, how?
- caseyc0
LoadVars, XML, getURL, you name it. As long as it can be accessed over HTTP, your good.
Something as simple as...
send_lv = new LoadVars();
send_lv.message = "Hello Perl";
rec_lv = new LoadVars();
rec_lv.onLoad = function(){
trace(this);
}
send_lv.sendAndLoad("perl.cgi",r...