Делаю flash сайт по видео уроку- все получалось. код простой

Код AS3:
stop();
//handle events for buttons
home.addEventListener(MouseEvent.CLICK, clickSection)
about.addEventListener(MouseEvent.CLICK, clickSection);
portfolio.addEventListener(MouseEvent.CLICK.clickSection);
contact.addEventListener(MouseEvent.CLICK, clickSection);
function clickSection (evtObj:MouseEvent){
// trace show what's happening... in the output window
trace ("The "+evtObj.target.name+" button was clicked!")
// go to the section clicked on...
gotoAndStop (evtObj.target.name);
}
при запуске тест ролика онне останавливается а циклично идет по кругу-ошибку выдает такую-
1120: Access of undefined property portfolio.
1119: Access of possibly undefined property clickSection through a reference with static type String.