Linking a button to an internet .swf

I’m currently making a mini site on flash. When I click on the home button, I want a .swf from my site to be displayed in the movie box. how can I do this?

this is my script:

on (release) {
_root.contents.loadMovie(“2.swf”);
}

I want the bold letters to be the link. how can I make it so the button is linked to http://nick.0catch.com/2.swf (the file on my site)? thx in advance.

:smiley:

[AS]on (release) {
_root.contents.loadMovie(“http://nick.0catch.com/2.swf”);
}

[/AS]

scotty(-:

Thanks scotty. I tried that too but I realized that my free web site does not allow hotlinks. :-/

Why not make a copy of your “two.swf” load it up to your minisite and use the code in your first post?

scotty(-:

yea i did that and it works fine. i just wanted try the other way.

lol, I’ll say no more;)