Hello!
I have a swf file which consists of 3 movie clips. When the 1st movie clip fades out, the 2nd one fades in. And the same for the 3rd one. I want to insert 3 individual links to the 3 movie clips so that when people click on the 1st movie, it links to page A of my website and cliks on the 2nd movie links to page B and so on.
Can anyone advise how to do that?
Thanks!
Ken.
that's depending on how you've made the swf.
you can add an onlick to each movie in actionscript:
don't forget to give the movie's the respective instance names.Code:
- movie1.addEventListener(MouseEvent.CLICK, movie1url);
- function movie1url(event:MouseEvent):void{
- navigateToURL(new URLRequest('yoururl'));
- }
Check the forum often for the latest design announcements. Everything from graphic design and web design, to films and music. Estetica is a great place for people to get together and help each other out.
Bookmarks