2008-01-16から1日間の記事一覧

コリンさんに教えてもらったサイト集

1. ActionScript 3.0: Is It Hard or Not? http://www.oreillynet.com/pub/a/oreilly/digitalmedia/2007/12/21/is-actionscript-3-hard-or-not.html これから「AS3って難しそう」っていう方にあったら上記のコリンの言葉を借りて、AS3の方が効率的だよ、と語…

.NETとFlex

Flexと.NET間でAMF通信できるライブラリが出ていますね。 AMFのメリットは、.NETのメソッドを直接呼び出すことができること。 一部プッシュ配信もできるみたいですね。 これも、BlazeDS効果でしょうか。 FluorineFx http://www.fluorinefx.com/

SpriteをUIに追加

UIComponentを通じて追加しましょう。 var mySprite:Sprite = new Sprite(); mySprite.graphics.beginFill(0xFFCC00); mySprite.graphics.drawCircle( 40, 40, 40 ); var UIRef:UIComponent = new UIComponent(); addChild(UIRef); UIRef.addChild(mySprite)…

多言語学習

BabbelというFlexベースのサイトが出ています。 Babbel: Learn a new language with a rich Internet application http://blogs.zdnet.com/Stewart/?p=708

Firefox拡張でFlex

FirefoxのExtension内にFlexを置いて通信ができるようにしたもの。 Flex+XUL+Firefox+LocalConnection http://talkflex.blogspot.com/2007/11/flexxulfirefoxlocalconnection_23.html

画面の拡大縮小

ブラウザの画面に合わせてFlex内のサイズも変わる。文字も。 Flex and ScaleMode http://blogs.adobe.com/aharui/2008/01/flex_and_scalemodes.html

Adobeの考えるSOA

特にメッセージ配信とのからみを中心に書いています。 ESBを流れるデータの出力先に画面にもできると。 Service Oriented Architecture (SOA) and Specialized Messaging Patterns http://www.adobe.com/enterprise/pdfs/Services_Oriented_Architecture_fro…

MacBook Air

Airって流行っているね。 http://www.apple.com/macbookair/

デザイン

Flexでのデザインについて書かれています。シリーズ化されています。 Designing for Flex – Part 1: Overview and introduction to Flex http://www.adobe.com/devnet/flex/articles/fig_pt1.html

カスタムコンポ

Flexでのカスタムコンポの作り方について書かれています。 ビューとロジックの分離について。 Creating components and enforcing separation of concerns with Flex http://www.adobe.com/devnet/flex/articles/components_separation.html

ブループリント

MVCSかなぁ。 An architectural blueprint for Flex applications http://www.adobe.com/devnet/flex/articles/blueprint.html

右クリック

AIR

何気に見落としていた! this.addEventListener(MouseEvent.RIGHT_CLICK, rightClickEventHandler); arkwさんありがとう! MouseEventクラス http://livedocs.adobe.com/labs/flex3/langref/flash/events/MouseEvent.html#RIGHT_CLICK