Flash Builder 4 -> 並存コンポーネントのクラッシュ

Posted by muchag | ActionScript 3.0,Flash Builder 4 |
初回投稿:2010-07-12 (月) 20:37:30 | 最終更新:2010-07-25 (日) 2:51:45

複数の名前の参照を明確に解決できません。
spark.components:Label
(*****\frameworks\libs\spark.swc(spark.components:Label) から)
および
mx.controls:Label
(*****\frameworks\libs\framework.swc(mx.controls:Label) から)
が存在します。

こんなエラーが出た。

原因はこれだ。
[as3]import spark.components.*;
import mx.controls.*;[/as3]

Label コンポーネント(コントロール)は、mx.controls および spark.components のどちらにも搭載されているので
どっちの Label よ~?
ってことになったわけだ。

はい・・・全部1つ1つ記述します。 😐
 

解決法めっけ!

並存するコンポーネントについては、真面目に記述してやればOK。

[as3onfx4]myLabel:mx.controls.Label = new mx.controls.Label();
yourLabel:spark.components.Label = new spark.components.Label();[/as3onfx4]
Posted by muchag | ActionScript 3.0,Flash Builder 4 |
初回投稿:2010-07-12 (月) 20:37:30 | 最終更新:2010-07-25 (日) 2:51:45

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

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a comment