http://blog.flair4.jp/2007/12/-as30-mouse-overroll-over.html
このページもわかりやすい!すばらしい。
http://f-site.org/articles/2007/06/09232451.html
http://www28.atpages.jp/~oukastudio/wordpress/?p=79
AS2のencod [...]
Continue reading about [memo]AS3とAS2で同じ動作をするencode/decodeメソッドは?
このページわかりやすい!
http://blog.flair4.jp/2009/10/as3-mouse-event-tips.html
<swfの場合>
画面が1つしかないのでCursorManagerの静的メソッドでやる。
・CursorManager.setBusyCursor();
・CursorManager.removeBusyCursor() [...]
自社のコードサイニング証明書を購入し、自社AIRアプリに署名しているのですが、昨年に購入したコードサイニング証明書がまもなく期限切れになるので証明書を更新しました。
更新した証明書を取得し、自社AIRアプリのインストーラ [...]
AIRアプリが、インストール後に自分がインストールされているフォルダ内にファイルやフォルダ等を追加すると、アンインストール時にそれらのファイルやフォルダが残ってしまう。
そのため、アンインストール後に再インストールしよう [...]
Continue reading about AIRアプリでインストールフォルダにファイル等を追加するとアンインストール時に残る
http://d.hatena.ne.jp/tsunet/20090618/1245356992
なるほどなるほど勉強になるな~
stageのマウスアップイベントをウォッチするのがみそなのね。
PLAIN TEXT
Actionscript:
button.addEventListener(MouseEvent.MOUSE_DOWN, buttonPress);
button.addEventListener(MouseEvent.MOUSE_UP, buttonRelease);
button.addEventListener(MouseEvent.MOUSE_OVER, buttonOver);
button.addEventListener(MouseEvent.MOUSE_OUT, buttonOut);
function buttonPress(e:MouseEvent):void {
//the button is pressed, set a MOUSE_UP event on the button's parent stage
//to caputre the onReleaseOutside event.
button.parent.stage.addEventListener(MouseEvent.MOUSE_UP, buttonRelease);
}
function buttonRelease(e:MouseEvent):void {
//remove the parent stage event listener
button.parent.stage.removeEventListener(MouseEvent.MOUSE_UP, buttonRelease);
//if the events currentTarget doesn't equal the button we
//know the mouse was released outside.
[...]
FlexSDK3.2以前では大きな画像をImageコンポーネントに表示すると縮小時にスムージングが行われず、輪郭や文字等がジャギジャギに劣化する。
スムージングができないか調べていたらFlexSDK3.4以降??か定かで [...]
現在まだプレビュー版のAdobeFlashBuilder BurritoでFlexモバイルプロジェクトを作成し、サンプルAIRアプリを作って、GalaxyTab上で実行できるか試してみました。
BurritoがGalax [...]
http://un-q.net/2008/04/textfield_sprite_buttonmode_mouseenabled.html
SpriteにTextFieldをaddChildしてSpriteのbutton [...]
Continue reading about TextFieldを含むSpriteをbuttonMode=trueにしてもハンドカーソルが変わらない

http://www.chizuyado.com