我的AS2按钮代码有什么问题?

时间:2011-10-18 08:07:50

标签: flash actionscript actionscript-2

我只是按下一个按钮组件和页面下面的脚本,按下后返回到主页:

stop();
gallery_btn.onRelease = function (){
        getURL("http://chopsticks-cutlery.de ");
}

出于某种原因,它在下面给出以下错误消息 (请点击此链接:http://i429.photobucket.com/albums/qq19/tsujzpie/urltobuttoncodeproblems.jpg

不知道为什么会这样 - 它应该是一个简单的脚本,可以快速无误地工作吗?

1 个答案:

答案 0 :(得分:1)

您正在使用",但这是错误的。 使用此代码:

stop();
gallery_btn.onRelease = function (){
        getURL("http://chopsticks-cutlery.de");
}