Take the risk of thinking for yourself; much more happiness, truth, beauty and wisdom will come to you that way.- Christopher Hitchens
Archive for the 'ActionScript' Tag
Posted: Feb 28, 2009, 12:32 am | Author: cyberryo | Category: Dialy | Tags: ActionScript, Debug, Flash
ブラウザ上でFlashをデバッグするデバッガー、ThunderBoltとかFlashBugとか色々出てるけど、やっぱり素直にFlashのデバッガと同じものを吐き出してくれるFlashTracerが使いたいってことで、FlashPlayer10になった今、再度環境を整えてみました。
Read the rest of this entry »
Posted: Feb 21, 2009, 1:49 pm | Author: cyberryo | Category: Dialy | Tags: ActionScript, AS3, Flash, Progression
ディスプレイオブジェクトの位置を決めるとき、
mc.x = 100;
mc.y = 100;
addCommand(
new Prop({x:100,y:100})
);
とか、ありますが
mc.setProperties({x:100,y:100});
こんな感じで複数のプロパティを一括設定できます。
なんといっても一目でプロパティ確認できるのがオツ。
Posted: Feb 21, 2009, 1:39 pm | Author: cyberryo | Category: Dialy | Tags: ActionScript, AS3, Flash, Progression
もうProgressionから離れられないくらい浸ってしまいそうです。
すでに何度か案件で使用させて頂きましたが、ホームページらしいFlashが作れるというか、「Flashサイト制作」という案件にはこれっきゃないといった感じです。
自社のサイトも作り替え中。
もうあと少しでFlasherのデファクトスタンダードになる勢いですね。
Progression発展のためにも、使っていて便利なTipsを発見したらどんどん書いてシェアしていこうかなと思いますた。
僕はもっぱらクラスベース(FlashCS3 + FlashDevelop)で制作するスタイルなので、同じような感じで作ってる方とぜひ情報交換とかしていきたいな。
Posted: Jan 16, 2009, 3:47 am | Author: cyberryo | Category: Dialy | Tags: ActionScript, Flash, Program

正規表現で、繰り返しマッチする「/g」をうっかり忘れていたせいでかなりタイムロスした。。あまりに悔しかったから、悔しい記念エントリ。
Read the rest of this entry »
Posted: May 24, 2008, 12:55 am | Author: cyberryo | Category: Dialy | Tags: ActionScript, Flash

ASってLoaderで画像やらなにやら読み込むときのパスを、HTMLからのパスで参照しようとするみたい。つまりSWFを表示してるHTMLからの絶対パスでとろうとするよねー
Read the rest of this entry »