Hi,
I have created a file in Flash MX2004. It sends data to some other site. However, the same code works in Flash MX and also if i export the SWF in Flash 6 format but doesn't work on MX2004 or Flash 7.
Here is the code on submit button
on (release) {
var c = new LoadVars();
c.fname = fname;
c.lname = lname;
c.email = email;
c.listid = "RXXXXXXXXX";
c.redirect = "thankyou.html";
c.errorredirect = "error.html";
c.sendandload("http://www.****xx.com/cgi-bin/mmail-addonline.pl",c, "POST");
gotoandplay(2);
}
It works great on Flash MX but not on MX 2004.
Please help...
Thanks in Advance