Need help writing links

If anyone could help out here would be greatful.

Am trying to link several scenes together using link buttons which i made in one of the tutorials on this site, the buttons work fine, thats not a problem, they move about etc, however for the life of me i cant work out where i should be entering the code in thr action script

This is the code i have thus far::

b1.onRollOver = over;
b1.onRollOut = out;
b1.buttText.buttonText.text = “THIS MONTHS SPECIAL OFFERS”;

b2.onRollOver = over;
b2.onRollOut = out;
b2.buttText.buttonText.text = “EMPLOYMENT OPPORTUNITIES”;

b3.onRollOver = over;
b3.onRollOut = out;
b3.buttText.buttonText.text = “THE BUNNERY”;

b4.onRollOver = over;
b4.onRollOut = out;
b4.buttText.buttonText.text = “SHOP ONLINE”;

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

function out() {
this.gotoAndPlay(7);
}

i havent changed any of the button names so that should be ok.

Im trying to link all for buttons in, but if i can have help with just one i’ll know what i should be doing then.

button one i need to link to a scene called “Specials” without the "'s and frame one inside of that scene.

Would be most grateful for spot of help

thanks