AIR Beta3

AIR Beta3が出ていたのでいれてみるとまたいろいろ動かなくなる。
例によってアプリケーションディスクリプタファイルの仕様が変更されている様だ。

invalid application descriptor: application filename must have a non-empty value.

とか表示されるし。
いろいろ調べてみたところ、

が主立ったところか。直してみたらとりあえず動く様にはなったが、まだ目的のプログラムは動かない。起動はするのだが。
参考にしたページはここ
その中で紹介されていたアプリケーションディスクリプタファイルをそのまま掲載。

<?xml version="1.0" encoding="utf-8" ?>
<application xmlns="http://ns.adobe.com/air/application/1.0.M6">
	<id>com.example.ExampleApplication</id>
	<name>Example Co. Example Application 1.0</name>
	<version>1.0</version>
	<filename>Example Application</filename>
	<description>This is a sample AIR application.</description>
	<copyright>(c) 2007 Example Co., Inc.</copyright>
	<initialWindow>
		<content>〜.swf</content>
		<title>Example Application</title>
		<systemChrome>standard</systemChrome>
		<transparent>false</transparent>
		<visible>true</visible>
	</initialWindow>
</application>

今日はここまでかなぁ。