我的问题与此论坛帖子解释完全相同
相反,我得到了以下错误
TypeError: Error #1010: A term is undefined and has no properties.
at Untitled_fla::MainTimeline/onButtonClick()
我尝试了解决方案,但不幸的是我仍然遇到同样的错误。
我也尝试了以下帖子回答
Change Banner ClickTag Code to AS3?
然后当我点击横幅时,我收到了以下错误:
TypeError: Error #2007: Parameter url must be non-null.
at global/flash.net::navigateToURL()
at Untitled_fla::MainTimeline/onClick()
我的代码:
stage_mc.addEventListener(MouseEvent.MOUSE_UP, onClick);
// The onClick function, how open the new clickTag URL when called
function onClick(e:MouseEvent):void {
if (root.loaderInfo.parameters.clickTAG.substr(0,5) == "http:")
{
navigateToURL(new URLRequest(root.loaderInfo.parameters.clickTAG), "_blank");
}
}
答案 0 :(得分:1)
function onClick(e:MouseEvent):void {
if ( stage.loaderInfo.parameters.clickTAG )
{
navigateToURL(new URLRequest( stage.loaderInfo.parameters.clickTAG ), "_blank");
}
}