Putting a url in a Flash template
Hello. I am working with a Flash template that I bought off the web. I'd like to change the web page the template goes to when certain buttons are clicked. However, I can't figure out how to do it. I found the following action script phrase online that I think does it:
on (release) {
_url;
getURL("http://www.catherineasaro.net/scienceFiction.html", "_blank");
}
But I don't really know how to use that in my template. I tried going to the symbol with the name of the button I want to click, highlighting it, and then entering the above action script command, but it doesn't work. I get the compiler error message:
| Symbol=Symbol 18 copy 4, layer=Layer 5, frame=1, Line 1 | Mouse events are permitted only for button instances |
I also tried
on( Release ) {
getURL( "http://www.catherineasaro.net/scienceFiction.html" );
}
But that gave the same compiler erros.
Can anyone advise me on how to do this?
Thanks -- Catherine