Si tienes la foto en un MovieClip y este tiene como nombre de instancia por ejemplo ir_mc pon el siguiente código en tu línea de tiempo.
Código:
ir_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);
function fl_ClickToGoToWebPage(event:MouseEvent):void
{
navigateToURL(new URLRequest("http://www.tupagina.com"), "_blank");
}
Un saludo.