FlashCS3のヘルプ(HelloWorld アプリケーションの拡張 )のミス

ミスです。

HelloWorld アプリケーションの拡張 で、次のソースがありますが・・・このままだとエラーになります。

mainText.border = true;
textIn.border = true;

textIn.addEventListener(KeyboardEvent.KEY_UP, keyPressed);

function keyPressed(event:Event):void
{
if (event.keyCode == Keyboard.ENTER)
{
mainText.text = myGreeter.sayHello(textIn.text);
}
}


下線部分が間違っています。正しくは、KeyboardEventです。

ちなみに、テキスト入力フィールド「textIn」は、単一行でないとただしく動作しません。

Index of all entries

Feeds
About

supported by TOGORU

Return to page top