01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
- Think IT 第1回:付箋紙アプリケーションを作ろう! (1/3)
を試してみた。
書かれてある通りに行っていき、実行してみたら、ランタイムエラー。
- [Think IT] 第3回:Adobe AIRで付箋風クライアントを作ろう (3/3)
$ adl Test-app.xml invalid application descriptor: descriptor version does not match runtime version
http://ns.adobe.com/air/application/1.0.M4としていたのを、
http://ns.adobe.com/air/application/1.0.M6に変更。で、実行。
$ adl Test-app.xml 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.gmail.taro.yamada.test1</id>
<name>TestAPP</name>
<version>1.0</version>
<filename>Example Application</filename>
<description>Test APP</description>
<initialWindow>
<content>test.swf</content>
<systemChrome>standard</systemChrome>
<title>Example Application</title>
<transparent>false</transparent>
<visible>true</visible>
</initialWindow>
</application>
<mx:Script>
<![CDATA[
public var sticky:NativeWindow;
public function create():void {
var initOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
sticky = new NativeWindow(initOptions);
sticky.visible = true;
messages.text += ">> Created new sticky\n"; // @debug
}
]]>
- Developing AIR Applications with Adobe Flex 3- EmacsWiki: color-moccur.el
- EmacsWiki: moccur-edit.el
color-moccur.el と moccur-edit が必要となる。
install-elisp を使ってインストールする。
・color-moccur.el
Compiling file /Users/taka/.emacs.d/color-moccur.el at Sun Feb 10 03:05:20 2008
color-moccur.el:425:6:Warning: `make-local-hook' is an obsolete function (as
of Emacs 21.1); not necessary any more.
In moccur-set-regexp:
color-moccur.el:1595:51:Warning: reference to free variable `regexp'
In end of data:
color-moccur.el:3641:1:Warning: the following functions are not known to be defined: string>,
add-local-hook, migemo-get-pattern
・moccur-edit.el
Compiling file /Users/taka/.emacs.d/moccur-edit.el at Sun Feb 10 03:08:56 2008
moccur-edit.el:58:1:Warning: defface for `moccur-edit-face' fails to specify
containing group
moccur-edit.el:69:1:Warning: defface for `moccur-edit-file-face' fails to
specify containing group
moccur-edit.el:80:1:Warning: defface for `moccur-edit-done-face' fails to
specify containing group
moccur-edit.el:91:1:Warning: defface for `moccur-edit-reject-face' fails to
specify containing group
In moccur-edit-get-info:
moccur-edit.el:195:18:Warning: `string-to-int' is an obsolete function (as of
Emacs 22.1); use `string-to-number' instead.
In moccur-edit-mode-in:
moccur-edit.el:312:4:Warning: `make-local-hook' is an obsolete function (as of
Emacs 21.1); not necessary any more.
warning が出ているが、とりあえずほっておく。(require 'color-moccur) (require 'moccur-edit)
- Adobe - Adobe Flex 2: Flex 2 SDK
から SDK をダウンロードする。
;; for ECMAScript
(autoload 'ecmascript-mode "ecmascript-mode" "ECMAScript" t)
(setq auto-mode-alist
(append '(("\\.as$" . ecmascript-mode))
auto-mode-alist))
$ mxmlc -helpとやってみたが、思いっきり出力が文字化けしてます・・・。UTF8 をデ
$ mxmlc HelloWorld.as 設定ファイル "/Users/hoge/local/flex2/frameworks/flex-config.xml" をロードしています /Users/taka/work/action-script/HelloWorld.swf (641 bytes)この mxmlc はコンパイル速度が結構遅いため、キャッシュを使ったコン
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12
最終更新時間: 2009-05-31 05:06