hola amigos tengo este codigo en un boton:
  
Código:
 onClipEvent (load)
{
    num = 5;
    this.title1.gotoAndStop(num);
    this.title2.gotoAndStop(num);
    this.nums1.gotoAndStop(num);
    this.nums2.gotoAndStop(num);
    this.icons1.gotoAndStop(num);
    this.icons2.gotoAndStop(num);
}
on (rollOver)
{
    if (_root.link != num)
    {
        this.gotoAndPlay("s1");
    } // end if
}
on (releaseOutside, rollOut)
{
    if (_root.link != num)
    {
        this.gotoAndPlay(_totalframes - _currentframe);
    } // end if
}
on (release)
{
    if (_root.link != num && _root.animation == 1)
    {
        _root.animation = 0;
        _root.link_prev = _root.link;
        _parent["item" + _root.link].gotoAndPlay("s2");
        _root.link = num;
        _root.play();
    } // end if
}
  donde tengo que cambiar para que en vez de que me lleve a un fotograma determinado, me lleve a una pagina.html  
espero me puedan ayudar