チェンジセット 3606: as3/gunyarapaint
- コミット日時:
- 2010/03/25 00:27:21 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/gunyarapaint/branches/gunyarapaint/compat/src/gunyarapaint.mxml
r3592 r3606 343 343 } 344 344 345 private function get isShortCut():Boolean346 {347 return stage.focus is mx.core.UITextField;348 }349 350 345 private function onKeyDown(evt:KeyboardEvent):void 351 346 { 352 if (is ShortCut)347 if (isForcusedOnTextField) 353 348 return; 354 349 switch (evt.keyCode) { … … 447 442 private function onKeyUp(evt:KeyboardEvent):void 448 443 { 449 if (is ShortCut)444 if (isForcusedOnTextField) 450 445 return; 451 446 switch (evt.keyCode) { … … 474 469 return; 475 470 } 471 } 472 473 private function get isForcusedOnTextField():Boolean 474 { 475 return stage.focus is mx.core.UITextField; 476 476 } 477 477 ]]>

