ActionScript のみを使用して DisplayObject または Shape にテキストを描画する方法はありますか? Web で見つけることができる唯一の方法は、TextField を作成することですが、TF を DisplayObject または Shape に追加することはできません。
編集:
viatroposのおかげで解決しました。
興味のある方へ:
DisplayObject
オブジェクトの関数にIBitmapDrawable
引数として渡すことができる実装を実装し、 を使用して描画できます。draw
BitmapData
graphics.beginBitmapFill
var textfield:TextField = new TextField;
textfield.text = "text";
var bitmapdata:BitmapData = new BitmapData(theWidth, theHeight, true, 0x00000000);
bitmapdata.draw(textfield);
graphics.beginBitmapFill(bitmapdata);
graphics.drawRect(0, 0, theWidth, theHeight);
graphics.endFill();