Flash Builder 4 -> 並存コンポーネントのクラッシュ
複数の名前の参照を明確に解決できません。
spark.components:Label
(*****\frameworks\libs\spark.swc(spark.components:Label) から)
および
mx.controls:Label
(*****\frameworks\libs\framework.swc(mx.controls:Label) から)
が存在します。
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]