hey - sorry i was away for a bit.
ok…
The way you have it setup won’t work. It’s nothing that you did.
but rather that the script needs an html page to run properly.
It looks like this is going to be a recurring problem, because lots of
people are running into this.
Since this movie is running from loadMovie, and not itself
embedded into an html page, it will not work.
Here’s the script I use, because I use loadMovie all the time.
Put this in your head tag of the html page your main movie is on:
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
</script>
then put this in a getURL action on your button in flash:
on (release) {
getURL("about :openNewWindow('http://www.domain.com','thewin','height=250,width=100,toolbar=no,scrollbars=no')");
}
[size=1][for some reason, it’s putting a space between domain and .com. no space goes there ][/size]
Simply change the properties of this script on each button for
what you need the page to display (status, scrollbars, etc).
The great thing about this script, is that you can reuse it over and
over again with 100’s of buttons. All you have to do is change the
button’s script properties to what you need.
Hope that helps. =)