Flash Builder 4 -> width, height のパーセント指定

Posted by muchag | ActionScript 3.0,Flash Builder 4 |
初回投稿:2010-07-18 (日) 14:11:44 | 最終更新:2010-07-25 (日) 2:50:44

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]

チャンチャン!

Posted by muchag | ActionScript 3.0,Flash Builder 4 |
初回投稿:2010-07-18 (日) 14:11:44 | 最終更新:2010-07-25 (日) 2:50:44

コメントはまだありません »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a comment