Hi, another question....I have 6 different pieces of text on my my movie, and each one has the following URL
---------------------------------------------------
javascript
penNewWindow('orange_fuego.html','thewin','height=300,width=400,toolbar=no,scrollbars=no');
--------------------------------------------------
And so I have one of these lines for each piece of text aimed at a different html page....
Now this is my code on my index.html page:
---------------------------------------------------
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
</script>
---------------------------------------------------
And on the embeded tags I have
swLiveConnect=true NAME=main_site.swf
It seems to be working, but for some reason once I click the first one, the rest of my links go to the same page,, so they are not poping up their respective html page, I don't understand !!! please help
---------------------------------------------------
javascript
--------------------------------------------------
And so I have one of these lines for each piece of text aimed at a different html page....
Now this is my code on my index.html page:
---------------------------------------------------
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
</script>
---------------------------------------------------
And on the embeded tags I have
swLiveConnect=true NAME=main_site.swf
It seems to be working, but for some reason once I click the first one, the rest of my links go to the same page,, so they are not poping up their respective html page, I don't understand !!! please help