如何在 Swish Max 中创建组合框?

发布于 2024-09-18 07:51:01 字数 69 浏览 6 评论 0原文

请帮我在 Swish Max 中创建一个组合框。 我搜索了现成的组件,但 swish 中没有。

我该怎么做?

Please help me create a combo box in swish max.
I searched for ready-made components, but it's not there in swish.

How can I do this?

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

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

发布评论

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

评论(1

淤浪 2024-09-25 07:51:01

我找到了解决方案。
请按照以下步骤操作=>

1->创建动态文本框
2->在它前面画一个向下的箭头
3->单击箭头自动形状在动态文本框下方创建一个影片剪辑
4->该影片剪辑必须包含按钮集合,并且每个按钮必须包含一个值
5->对于影片剪辑内按钮的相应点击,更新动态选择文本框

 on (press) {
    select = "MBA";
    _root.dept1.text = "MBA";
}


on (release) { 
_root.gotoAndStop("home"); 
}

I found a solution for it.
follow these steps =>

1 -> Create a dynamic text box
2 -> draw an down arrow in front of it
3 -> for a click on arrow autoshape create an movieclip below the dynamic text box
4 -> This movieclip must contain the collection of buttons and each button must contain a value
5 -> for respective clicks on buttons inside a movie clip update the dynamic select textbox

 on (press) {
    select = "MBA";
    _root.dept1.text = "MBA";
}


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