Advanced buttons

i made an advanced button with this code
stop();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}

this.onRollOver = function(){
rewind = false;
play();
}

this.onRollOut = function(){
rewind = true;
}

this.onRelease = function(){
getURL(“http://redemptiondesigns.net/gallery.html”);
}

it works exactly how i want it to work
my only problem is, since it is not a typical button, but a movie clip
the only hit area is the letters themselves

i want to extend the hit area to be a large area around the text but no matter what symbols i convert to buttons and drag the rectangle tool over to indictate a hit area

same result

help =)<3