Hello
Im trying to send POST variables to a _blank window and the code below works perfectly, except for when the flash file resides within a frameset. All of a sudden no variables are sent. If I load the actual html document containing the flash, everything is fine. When I load the frameset that has the flash document as one of two frames, no variables are sent. The window opens fine, but with no variables stored in the new window. This is so far only experienced on PC with Internet Explorer. Now guess which platform and browser the client uses? Typical.
Does anyone know of a trick that could make this work here as well?
ActionScript Code:
function sendData() {
myTest = new LoadVars();
myTest.v1 = "Greetings";
myTest.v2 = "Professor Falken";
myTest.movHeight = 240;
myTest.send("script.php", "_blank", "POST");
}
Thanks a whole bunch beforehand for any tip or trick, or solution for that matter ;-)