Ok - here's what I did now - using ActionScript 3
named my invisible button instance "fusion_btn"
Made a top layer called "action"
In the first keyframe, I put:
var fusion_url:URLRequest = new URLRequest("
http://www.fusion2008.com");
function fusion(event:MouseEvent):void
{
navigateToURL(fusion_url, "_blank");
}
fusion_btn.addEventListener(MouseEvent.CLICK, fusion);
***This still does not get the banner to click to
fusion2008.com though.
What am I doing wrong?