HI there.
I designed a flash banner today, and put a button on it with the following code :
on (release) {
getURL("
http://www.program-facturi.ro/ref/1/");
}
It works perfectly. But the client wants to URL to open in a new window, so I put the following code :
on (release) {
getURL("
http://www.program-facturi.ro/ref/1/", "_blank");
}
This works too, but Firefox blocks the pop-up.
How can I avoid Firefox from blocking this url ?
Thanks in advance,
KS__