スキップしてメイン コンテンツに移動

投稿

ラベル(FlashDevelop)が付いた投稿を表示しています

Simplest AIR Application Launch Command

I always forgot how to launch AIR application from command line for debugging purpose :( As you know there are lot of command line options for adl but I think the simplest command is something like below: {PATH_TO_FLEX_SDK}\bin\adl.exe application.xml bin FlashDevelop's prepared bat files, which are generated when you created AIR project, also help your understanding for how the AIR app is launched.

ExportSWC - FlashDevelopでswcファイルを生成

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に加えてコンパイルしました。:)