PDA

View Full Version : popups dont work on Netscape 4.76?


microsushi
12-03-2001, 09:40 PM
There are two popup tutorials on actionscripts.org and I've tried both. I thought that they were not working when I checked them on my primary browser (Netsccape Nav 4.76). Yes I finally discovered that the script works on IE and not Netscape Navigator 4.76.

Question, is there a script for "pop-ups"which work for both browsers?

Jungl3M4n
12-03-2001, 09:57 PM
Some people says that I'm not that professional because I do all my designs to work only in IE, but I think that it is REALLY LOT BETTER than NS, But yeah go and make a simple html popup in Dreamweaver, then copy the JavaScript of DW and place it on your html(the one with the swf) then call the action from the button.

That might work.

Peace,

:D

tg
12-03-2001, 10:58 PM
check to make sure that you have the most current netscape flash plugin.

Billy T
12-03-2001, 11:19 PM
this works in both


in the head of your html -

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,men ubar=0,resizable=0,width=650,height=450, left = 126, top = 85');");
}
// End -->
</script>

on your link

<A HREF="javascript:popUp('yoursite.html')">

microsushi
12-04-2001, 05:12 PM
Thanks, I made it work with your advice and a little tweaking. Your suggestions helped. I will spend more time with this to fully understand it, right now it is still magic:)