如何在 Flash 8 中滚动内容?

发布于 2024-12-22 13:51:35 字数 104 浏览 0 评论 0原文

我的 Flash 应用程序中有几个场景;对于其中一些人来说,电影高度是正确的,而对于其他人来说,内容很长,所以我需要有滚动条来让用户向下滚动。 在旧版本的 Flash 中,哪种处理方式是正确的?

I have several scenes in a Flash app; for some of them the Movie height is right while for others the content is very long so i would need to have scrollbars to let the user scroll down.
Which is the correct way to handle it in this old version of Flash?

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

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

发布评论

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

评论(1

忆梦 2024-12-29 13:51:36

将影片剪辑放置在 ScrollPane 组件中。

var _sp:ScrollPane = new ScrollPane();    
this.addChild(_sp);
_sp.setSize(400,400);

var _container:Sprite = new Sprite();
this.addChild(_container);

_sp.source=_container;

http://www.tizag.com/flashTutorial/flashtextscroll.php
http://www.entheosweb.com/flash/scrolling_content.asp

Place your movieclip in the ScrollPane component.

var _sp:ScrollPane = new ScrollPane();    
this.addChild(_sp);
_sp.setSize(400,400);

var _container:Sprite = new Sprite();
this.addChild(_container);

_sp.source=_container;

http://www.tizag.com/flashTutorial/flashtextscroll.php
http://www.entheosweb.com/flash/scrolling_content.asp

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