ブラウザでダウンロード
パッケージ内容プログラムの内容は、超シンプル flv プレーヤーです。 Mainw.mxml を変更して Mainw.swf を変更できます。 その方法の詳細は、readme.txt を参照して下さい。 lightbox_flvPlayer.air をビルドする為に必要な lightbox.p12 を同梱しています。 自分でも作成できますが、このファイルをそのまま使用してもかまいません。 ( パスワードは password ) 以下は作成方法です 1. adt -certificate -cn lightbox 1024-RSA lightbox.p12 password lightbox_flvPlayer.air は、以下のコマンドラインで作成されます。 1. adt - package -storetype pkcs12 -keystore lightbox.p12 -storepass password 2. lightbox_flvPlayer.air Mainw.xml Mainw.swf winofsql.png sample.flv Mainw.xml が アプリケーション記述ファイル であり、Mainw.swf が実行ファイルで必須です。 winofsql.png は、Mainw.xml 内で記述しているアプリケーション用のアイコンで、 タスクバーや、ショートカットや、アプリケーションの追加と削除( Windows ) で 使用されます。 sample.flv は、サンプル実行用の flv ですが、winofsql.png と sample.flv は、 このコマンドラインで指定しなければ、パッケージに含まれません。 .air の内容を確かめたい場合は、拡張子を .zip に変更して解凍すれば良いでしょう。 アプリケーション記述ファイルsimple_flv_player が、ディレクトリ名、ファイル名、アプリケーション名を兼ねます。 どうやっても分解指定できませんでした。 name は、インストーラで表示されるだけで他に影響しません。 installFolder は、インストーラで表示される、Program Files の下の デフォルトのインストールディレクトリです。 プログラムメニューを日本語にしたい場合は、後からショートカットを 変更する事で可能です。 インストール時から日本語にしたい場合は、filename を日本語にすると 良いのですが、.exe まで日本語になります。 01. <? xml version = "1.0" encoding = "utf-8" ?> 02. < application xmlns = "http://ns.adobe.com/air/application/1.0" > 03. 04. < id >lightbox.SimpleFlvPlayer</ id > 05. < version >1.0</ version > 06. < filename >simple_flv_player</ filename > 07. < name >超シンプル FLV プレーヤー</ name > 08. < installFolder >lightbox</ installFolder > 09. 10. < initialWindow > 11. < title >AIR アプリケーション</ title > 12. < content >Mainw.swf</ content > 13. < x >300</ x > 14. < y >200</ y > 15. < width >600</ width > 16. < height >540</ height > 17. < systemChrome >none</ systemChrome > 18. < transparent >true</ transparent > 19. < visible >true</ visible > 20. < minimizable >true</ minimizable > 21. < maximizable >true</ maximizable > 22. < resizable >true</ resizable > 23. </ initialWindow > 24. < icon > 25. < image32x32 >winofsql.png</ image32x32 > 26. </ icon > 27. 28. </ application > |