如何将flash电影制作为html链接?
例如
<a>embed</a>
它不起作用。
有什么想法吗?
答案 0 :(得分:0)
如果你想简单地在.fla中将一段flash链接到一个网站。插入一个新图层,将该图层命名为a(用于actionscript / actions)。在里面输入以下内容,比如说你希望有人点击的东西是你命名的按钮,作为影片剪辑* mcbutton * :
mcbutton.onRelease = function:void () {
getURL("http://www.yahoo.com");
};
答案 1 :(得分:0)
这将在Actionscript 3中起作用
您需要使用需要URLRequest的navigateToURL()命令。将鼠标点击事件监听器添加到舞台上,并在事件监听器中调用的函数中调用navigateToURL()命令,传递您想要链接到的URL的URLRequest。
// add the click event listener to the stage
stage.addEventListener(MouseEvent.CLICK, onClickHandler);
//define the onClickHandler function to go to the url
function onClickHandler(evt:MouseEvent):void{
navigateToURL(new URLRequest("http://www.google.com"));
}