Java活用生活

ログイン

オンライン状況

オンラインユーザー1人
ログインユーザー0人
登録ユーザー2人

カウンタ

COUNTER335481

トピックス

トピックス >> 記事詳細
2020/08/14

Enterキーでフィールド移動

固定リンク | by:aramaki
Enterキーでフィールド移動
---------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
   xmlns:s="library://ns.adobe.com/flex/spark" 
   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
<fx:Script>
<![CDATA[
private function moveNext(next_txt:TextInput,event:KeyboardEvent):void{
// Enterでなければ、そのまま
if(event.keyCode!=Keyboard.ENTER){
return;
}
// 次の入力項目へ
next_txt.setFocus();
}
]]>
</fx:Script>
<fx:Declarations>
<!-- 非ビジュアルエレメント (サービス、値オブジェクトなど) をここに配置 -->
</fx:Declarations>
<s:TextInput id="txt1" x="91" y="30"/>
<s:TextInput id="txt2" x="91" y="84"/>
<s:TextInput id="txt3" x="91" y="144"/>
<s:TextInput id="txt4" x="91" y="217"/>
</s:Application>

14:11 | 投票する | 投票数(0)
Copyright © Java活用生活 All Rights Reserved .