チェンジセット 199: as3/as3Query/samples/Box25.as

差分発生行の前後
無視リスト:
コミット日時:
2008/01/14 01:20:06 (2 年前)
コミッタ:
nitoyon
ログメッセージ:

add comments

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/as3Query/samples/Box25.as

    r198 r199  
    1313                        }); 
    1414 
     15                        // create 25 boxes 
    1516                        for(var i:int = 0; i < 25; i++) { 
    16                                 $(RoundRect) 
    17                                         .attr({ 
     17                                $(RoundRect)   // $(ClassName) equals $(new ClassName()) 
     18                                        .attr({    // Set properties 
    1819                                                x: (i % 5) * 50, 
    1920                                                y: Math.floor(i / 5) * 50, 
     
    2425                        } 
    2526 
     27                        // add enterFrame event handler 
    2628                        $(stage).enterFrame(function(event:Event):void { 
    2729                                $("RoundRect").attr("color", function(...args):uint {