「1084: var 'instanceName' will be scoped to the default namespace: YourViewName: internal. It will not be visible outside of this package.」という警告メッセージが出ることがあります。
これは、Access modifiersが設定されていないためにでる警告です。Access modifiersとはActionScript3では「public, private, internal, protected 」の4つのことです。
なので、この警告が出た際はこのどれかを設定してあげると警告が消えます。
「var strTest:String = "Test"」
↓
「private var strTest:String = "Test"」
↓
「private var strTest:String = "Test"」
0 件のコメント:
コメントを投稿