I have my main landing page, where users can click a link that will give them a popup window with flash.
At the end of the flash is an order button.
I'd like when the order button is pushed for the main landing window to go to the order page, and the flash popup to close.
I've tried
on(release) {
getURL("order.html", "_main");
getURL ("javascript:self.close();")
}
But this just opens a new window, and then closes the popup and the new window.
Any ideas?
Thanks.