FP 10
AS 2.0 (Has to be 2.0, i’m working out of a template that i didnt create, and converting it just breaks the whole thing)
on (click) {
var lname:String = _parent.lname.text;
var lpass:String = _parent.lpass.text;
trace(lname);
getURL("http://www.mysite.com/testform.php", "_blank", "POST");
_parent._parent.gotoAndPlay(31);
}
(The gotoandplay is unrelated)
the trace returns the correct value.
However, when the window opens, I get no post variables, and the URL is:
What am i doing wrong?