2011-02-13 53 views

回答

7

您必須確保BitmapData對象用透明background-fill-color(構造函數的第四個參數)初始化。這應該工作(假定你有一個文本字段文本):

var snapshot:BitmapData = new BitmapData(textField.width, textField.height, true, 0x00000000); 
snapshot.draw(textField, new Matrix()); 

又見as3 docs for the BitmapData constructor

+0

,看起來可能有用,但在這一步之後,我會做什麼來在屏幕上顯示它? 在此先感謝 - – 2013-05-15 03:07:06