Hi there!
i am trying to call a js function from flash to open a new window and pass a variable.
The variable is the button’s instance name and has to get through the new page in order to open the appropriate xml file.
my js code is:
<script language=“javascript”>
function openPopup(name){
window.open(‘moreDetails.com’,‘moredetails’,width=700);
alert (name);
}
</script>
and in flash:
darkSpots.onRelease = function() {
var product:String = new String;
product = this._name;
trace(product);
getURL(“Javascript:openPopup(” + product + “)”);
}
for some reason the javascript is not working at all!!!ANY IDEAS PLEASE???