差分発生行の前後
無視リスト:
コミット日時:
2009/05/18 02:42:49 (3 年前)
コミッタ:
uranodai
ログメッセージ:

--

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/StreetViewManager/trunk/sample/Main.as

    r2662 r2663  
    33        import flash.display.Sprite; 
    44        import flash.events.KeyboardEvent; 
     5        import flash.text.TextField; 
     6        import flash.text.TextFieldAutoSize; 
    57        import flash.ui.Keyboard; 
    68 
     
    1618 
    1719                        stage.addEventListener(KeyboardEvent.KEY_UP, onKeyDown); 
     20                         
     21                        // draw text 
     22                        var text:TextField = new TextField(); 
     23                        text.text = "Enter: load map / Space: go to front / Up,Down,Left,Right: pan camera"; 
     24                        text.autoSize = TextFieldAutoSize.LEFT; 
     25                        text.mouseEnabled = false; 
     26                        addChild(text); 
    1827                } 
    1928