Adobe cs5 动作脚本 3

发布于 2024-12-11 19:48:34 字数 77 浏览 0 评论 0原文

我正在为孩子们做一个简单的拖放数字游戏。一旦用户输入所有数字并按下“执行”按钮(btn_go),如何在用户单击“执行”按钮后出现另一个按钮?

I'm doing a simple drag and drop number game for kids. Once the user places all the numbers and presses the go button (btn_go) how do I get a another button appearing after the user has click the go button?

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

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

发布评论

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

评论(2

面如桃花 2024-12-18 19:48:34

我想您会问“如何从主舞台通过 Flash 中的名称获取 DisplayObject?”?
如果我是对的

stage.getChildByName("nameOfMyAnotherBtn");

I think you ask about "How get DisplayObject by name in Flash, from main stage?"?
If I'm rigth

stage.getChildByName("nameOfMyAnotherBtn");
夕色琉璃 2024-12-18 19:48:34
btn_go.addEventListener(MouseEvent.CLICK, btnGoClicked);

function btnGoClicked(evt:MouseEvent):void {
    another_button.visible = true;
    btn_go.visible = false; //Optionally hide button go
}

同样,如果您想在单击 another_button 时显示/隐藏 btn_go,也是同样的想法。

btn_go.addEventListener(MouseEvent.CLICK, btnGoClicked);

function btnGoClicked(evt:MouseEvent):void {
    another_button.visible = true;
    btn_go.visible = false; //Optionally hide button go
}

Likewise, if you wanted to show/hide btn_go when another_button is clicked it's the same idea.

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