ExportSWCというアドインでFlashDevelopからswcファイルを生成できます。
私はこのアドインを使って、swcファイルを生成しようとしたのですが、以下のエラーに遭遇しました。
---
Error: could not find source for resource bundle containers.
Error: could not find source for resource bundle core.
Error: could not find source for resource bundle effects.
Error: could not find source for resource bundle skins.
Error: could not find source for resource bundle styles.
---
Google先生で調べてみると、以下のページを見つけました。
Unable To Generate a SWC if using a third party SWC
結論から書きますと、
-library-path {flexSDK}/frameworks/locale/en_US
をCompiler Optionに加えればいいようです。私は面倒くさかったので、必要なswcファイルを全部かき集めて1つのディレクトリ(例:lib)に入れて、-library-path libをCompiler Optionに加えてコンパイルしました。:)
私はこのアドインを使って、swcファイルを生成しようとしたのですが、以下のエラーに遭遇しました。
---
Error: could not find source for resource bundle containers.
Error: could not find source for resource bundle core.
Error: could not find source for resource bundle effects.
Error: could not find source for resource bundle skins.
Error: could not find source for resource bundle styles.
---
Google先生で調べてみると、以下のページを見つけました。
Unable To Generate a SWC if using a third party SWC
結論から書きますと、
-library-path {flexSDK}/frameworks/locale/en_US
をCompiler Optionに加えればいいようです。私は面倒くさかったので、必要なswcファイルを全部かき集めて1つのディレクトリ(例:lib)に入れて、-library-path libをCompiler Optionに加えてコンパイルしました。:)
コメント