hi,
I've used a template to create some animated buttons for website, using the following code for the rollover animation

Code:
b4.onRollOver = over;
b4.onRollOut = out;
b4.buttText.buttonText.text = "LOGO'S & ICON'S";

function over() {
	this.gotoAndPlay(2);
}

function out() {
	this.gotoAndPlay(7);
}
(4 buttons in total) - i was wondering if i had to add a line similar to this, but it didnt work of course
b4.getURL = "http.website.com"