演示:
1、導入你想要使用的一個圖片到舞臺,設置屬性:寬、高與圖片相同。
2、把圖片拖到舞臺上,左對齊,上對齊。右鍵單擊圖片,轉換成電影修剪。(名字任意)圖1:
3、在屬性面板中輸入實例名字 " imageMC" 。圖2:
4、添加as層,輸入代碼:
//This container contains all the mask graphics
var container:Sprite = new Sprite();
addChild (container);
//Set the container to be the image’s mask
imageMC.mask = container;
//Set the starting point
container.graphics.moveTo (mouseX, mouseY);
addEventListener (Event.ENTER_FRAME, enterFrameHandler);
/*Draw a new rectangle in each frame and add it onto the container
NOTE: you can use all kinds of shapes, not just rectangles! */
function enterFrameHandler (e:Event):void {
container.graphics.beginFill(0xff00ff);
container.graphics.drawRect(mouseX-50, mouseY-50, 100, 100);
container.graphics.endFill();
}
Mouse.hide();
5、完成,測試你的影片剪輯。遮罩可以做成任意形狀。只是矩形、圓形等簡單的圖形比較容易一些,復雜的圖形用代碼繪制要難一些。
討論:http://www.missyuan.com/viewthread.php?tid=441990