Flash Builder 4 -> width, height のパーセント指定
ActionScript で、コンポーネントの width を 100% にしようとしてはまった・・・。
[as3onfx4]var myGroup:Group = new Group();myGroup.width = “100%”; // エラー
myGroup.width = 100%; // エラー[/as3onfx4]
グーグル先生にお伺いを立てると・・・一発回答!
ジャンピング土下座:ActionScriptでのwidth/heightのパーセント指定方法
な、なるほど・・・そういうプロパティがあったのね・・・。
[as3onfx4]var myGroup:Group = new Group();myGroup.percentWidth = 100;[/as3onfx4]
チャンチャン!