调整影片剪辑大小时动态文本字段的文本会拉伸吗?

发布于 2024-10-15 17:53:04 字数 171 浏览 2 评论 0原文

好吧,我有一个影片剪辑,其中包含一个动态文本字段。当使用变换管理器拉伸影片剪辑时,文本也会拉伸。我正在开发一个组件。而且,Event.Resize不能用作Event.Resize是Stage事件。它不适用于影片剪辑和精灵。 将其放入事件中。 Enter Frame 可以工作,但使用此技术时会挂起整个 CMS。 有什么帮助吗??

Well, i have a movieclip containing a dynamic text-field in it. When movieclip is stretched using transform manager, the text stretches. i am developing a component. Moreover,Event.Resize can not be used as Event.Resize is the Stage event. it does not work for movie-clips and sprite.
Putting it in Event. Enter Frame works but that hangs the whole CMS when this technique is used.
Any helps??

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

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

发布评论

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

评论(1

寂寞花火° 2024-10-22 17:53:04

如果您使用 Greensocks 转换管理器,则已经内置了自定义事件,您可以像这样使用:

manager.addEventListener(TransformEvent.SCALE, onScale);

在 onScale 函数中,您可以根据需要设置 TextField 的比例,例如保持其原始比例:

tf.scaleX = 1 / yourMovieClip.scaleX;
tf.scaleY = 1 / yourMovieClip.scaleY;

或者简单地保持正确的比例长宽比:

tf.scaleY = tf.scaleX * yourMovieClip.scaleX / yourMovieClip.scaleY;

If you are using Greensocks transform manager, there are already custom events built in that you can use like this:

manager.addEventListener(TransformEvent.SCALE, onScale);

in the onScale Function you can set the scale of the TextField as you like, for example keep its original scale:

tf.scaleX = 1 / yourMovieClip.scaleX;
tf.scaleY = 1 / yourMovieClip.scaleY;

or simply maintain a correct aspect ratio:

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