Here is my code for my flash button:
====
on (release) {
getURL ("javascript:NewWindow('write_to_file.php','Vortus ','350','230','yes')", "_blank", "POST");
}
--------
I did discover that the window size works if you remove "_blank" and replace it with "".
on (release) {
getURL ("javascript:NewWindow('write_to_file.php','Vortus ','350','230','yes')", "", "POST");
}
The problem is my PHP script needs _blank to have the variable values sent across.
Is this a bug in Flash, or is there a work-around?