Hello there,
I have a .swf that opens in a popup. At the conclusion of the clip, I have a button. I would like the button to redirect the parent window and close itself.
stop();
btn_join.onRelease = function()
{
getURL(“http://www.myurl.com”, “_parent”);
}
btn_join.onRelease = function()
{
getURL(“javascript:window.close()”);
}
It seems I can do one or the other, is there a way to combine these and execute off one button click?
Thanks,
Dirk