FLASH动作脚本圆角蒙版?

发布于 2024-08-31 06:23:10 字数 91 浏览 2 评论 0原文

如何使用 ActionScript 动态遮罩 Flash 影片,在 4 个角创建 5 像素的圆形遮罩? (角应该是透明的,其余部分应该是可见的)

谢谢!

How can I mask my flash movie dynamically using actionscript to create a 5 pixels rounded mask in the 4 corners? (the corners should be transparent, the rest should be visible)

Thanks!

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

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

发布评论

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

评论(1

浅紫色的梦幻 2024-09-07 06:23:11

事情可能就是这么简单。在 Flash 中制作一个圆角矩形并将其命名为 myMovie。

蒙版

mask = myMovie;

绘制圆角矩形以在舞台上制作电影

//550x400 stage
var roundRect:Shape = new Shape();
roundRect.graphics.beginFill(0x006600, 1);
//stage width, stage height, width of rectangle, height of rectangle, ellipse width, ellipse height
roundRect.graphics.drawRoundRect(125, 75, 300, 200, 25, 25);
addChild(roundRect);
//mask
mask = roundRect;

将蒙版和电影放在舞台上“带有类名 Rr 和 Ym 的符号”

//550x400 stage
//put mask on stage
var mm:MovieClip = new Rr;
addChild(mm);
//position on stage
mm.x = stage.stageWidth/4;
mm.y = stage.stageWidth/4;
//mask
mask = mm;
//put movie on stage
var yourClip:MovieClip = new Ym;
addChild(yourClip);
//position on stage
yourClip.x = stage.stageWidth/4;
yourClip.y = stage.stageWidth/4;

It could be this simple. Make a rounded corner rectangle in Flash and name it myMovie.

Mask

mask = myMovie;

Draw rounded corner rectangle to make movie on stage

//550x400 stage
var roundRect:Shape = new Shape();
roundRect.graphics.beginFill(0x006600, 1);
//stage width, stage height, width of rectangle, height of rectangle, ellipse width, ellipse height
roundRect.graphics.drawRoundRect(125, 75, 300, 200, 25, 25);
addChild(roundRect);
//mask
mask = roundRect;

Put mask and movie on stage 'symbol with Class name Rr and Ym'

//550x400 stage
//put mask on stage
var mm:MovieClip = new Rr;
addChild(mm);
//position on stage
mm.x = stage.stageWidth/4;
mm.y = stage.stageWidth/4;
//mask
mask = mm;
//put movie on stage
var yourClip:MovieClip = new Ym;
addChild(yourClip);
//position on stage
yourClip.x = stage.stageWidth/4;
yourClip.y = stage.stageWidth/4;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文