2009年12月21日月曜日

Native ProcessとNative Installer

Adobe AIR 2.0でNative ProcessとNative Installerについての情報。

Interacting with a native process (ADC US)

Here is the process that works:
  1. comment out the tag in app. Descriptor.
  2. Export the AIR file.
  3. run a command: adt –package target native YourApp.dmg YourApp.air

2009年12月18日金曜日

BitmapDataのARGB指定

BitmapDataオブジェクトを作成する際に、第4引数がARGB指定だってことを忘れてうっかりハマってたのでメモ。
public function BitmapData(width:int, height:int, transparent:Boolean = true, fillColor:uint = 0xFFFFFFFF)