Greetings,
I’m (very) new to AS and I’mhaving some problems…
I have a popup page that presents a flash menu, and, when I select an item of the menu, the popup closes and the item is loaded on the parent page (the one that opened the flash popup page)
my AS code is this:
on (release) {
getURL("javascript:window.opener.location.href = 'pagina.php?parametro=valor';
if (window.opener.progressWindow){
window.opener.progressWindow.close();
}
window.close();");
}
this is a small script javascript that opens on parent page the URL and closes the child page. (by the way, Is there another way to call javascript functions within actionscript??)
my problem is that this work… just for the url = pagina.php and not the url = pagina.php?parametro=valor as it should be. From the caracter ?, actionscript “eats” the URL.
what is the problem? any help is wellcome .
thanks
Sérgio