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

投稿

9月, 2009の投稿を表示しています

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

C#: SaveFileDialogの使用サンプル

SaveFileDialogの基本的な使い方を以下に示します。他の種類のダイアログでも基本的な使い方は同じです。 SaveFileDialog dialog = new SaveFileDialog(); dialog.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*"; dialog.FilterIndex = 2; dialog.RestoreDirectory = true; if (dialog.ShowDialog() == DialogResult.OK) { MessageBox.Show("Saved!"); }