2008-06-09から1日間の記事一覧

Tweener.addTweenの終了イベント

AS3

onCompleteプロパティでアニメーション終了イベントが取れるspriteを2秒かけてスッと(liner)回転させて、停止したときにtrace文"move complete"を出す場合 Tweener.addTween(sprite, { rotation:direction, time:2, transition:"liner", onComplete:onMoveCo…

別サーバにもmercurial入れた

同じ手順で入ったのを確認。らくちん そっちもスタンダードプラン。

fl.controls.Labelのフォーマット

AS3

flash.text.TextFormatで渡す html風のプロパティが使える var label:Label = new Label(); addChild(label); var format:TextFormat = new TextFormat(); format.color = 0xFFFFFFFF; format.align = "center"; format.font = "Arial"; format.bold = true;…