just trying to pass some variables from flash to php with getURL
getURL("CompSummary.php?url3=" + url3, "_self");
url3 keeps coming back as undefined
However I printed out url3 using dynamic text in the flash movie just to check it and it does indeed exist, and is defined.
I also tried creating a string and passing that to getURL
var path = "CompSummary.php?url3=" + url3;
getURL(path, "_self");
still no luck.
ideas?
getURL("CompSummary.php?url3=" + url3, "_self");
url3 keeps coming back as undefined
However I printed out url3 using dynamic text in the flash movie just to check it and it does indeed exist, and is defined.
I also tried creating a string and passing that to getURL
var path = "CompSummary.php?url3=" + url3;
getURL(path, "_self");
still no luck.
ideas?