as3中的包错误

发布于 2024-09-06 17:17:10 字数 489 浏览 5 评论 0原文

package {
import flash.display.Sprite;
import flash.utils.*;

public class SetTimeoutExample extends Sprite {
    private var delay:Number = 1000; // delay before calling myDelayedFunction

    public function SetTimeoutExample() {
        var intervalId:uint = setTimeout(myDelayedFunction, delay, "Hello", "World");
    }

    public function myDelayedFunction():void {
        trace(arguments[0] + " " + arguments[1]);
    }
}
}

我收到一个关于包的错误,这段代码有什么问题?谢谢

package {
import flash.display.Sprite;
import flash.utils.*;

public class SetTimeoutExample extends Sprite {
    private var delay:Number = 1000; // delay before calling myDelayedFunction

    public function SetTimeoutExample() {
        var intervalId:uint = setTimeout(myDelayedFunction, delay, "Hello", "World");
    }

    public function myDelayedFunction():void {
        trace(arguments[0] + " " + arguments[1]);
    }
}
}

i take an error about package what is wrong in this code?thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枫林﹌晚霞¤ 2024-09-13 17:17:10

您需要创建一个名为 SetTimeoutExample.as 的新文件,并将代码放入其中。确保该文件与 player.fla 位于同一目录中。然后打开player.fla,并在属性窗口(“窗口”>“属性”)中,将“Class”字段设置为SetTimeoutExample(不带.as)。

You need to create a new file called SetTimeoutExample.as, and put the code in there. Make sure that the file is in the same directory as player.fla. Then open player.fla, and in the properties window (Window > Properties), set the "Class" field to SetTimeoutExample (without the .as).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文