hi,
I have a flash game in which people can get a highscore… this highscore is stored in my MYSQL database…
Right now… I have this
on (release) {
gameid = 1;
getURL("submithigh.php", "_blank", "POST");
gotoAndPlay("load");
}
This passes the “score” variable in flash and sends it to this .php file… which CONNECTS to my database… and enters in the “score”…
However… with that code… It has to make a new pop up window for it to send…
What can i do to make it send … but not open up another window?
Thanks