I used the tutorial from kirupa on passcodes to implement a PHP/Flash login but am having problems with making it work… I have a index.swf that my login.swf page loads into… the login works when I use it by itself, but when I use the index page and the login loads into that file, then it won’t work…anybody know if I’m not configuring my paths correctly or what? not sure… thanks in advance for any help at all!!
this is the code on the button:::
on (release, keyPress “<Enter>”) {
if (pass != “”) {
loadVariablesNum(“newlogin.php”, 0, “POST”);
}
}
this is code from login.swf timeline:::::
stop();
Selection.setFocus(passinput);
this.onEnterFrame = function () {
if(_root.checklog == 1){
_root.gotoAndStop(122);
}
if(_root.checklog == 2){
_root.gotoAndStop(124);
}
}