When a flash control in a dialog,and user press "enter" button.
The WM_KEYDOWN message will first pass to IsDialogMessage.And in IsDialogMessage,it will send WM_GETDLGCODE to flash control to ask whether you want process the message.Flash control will always return DLGC_WANTARROWS|DLGC_WANTCHARS|DLGC_WANTTAB.
So the flash control can't reveive the WM_KEYDOWN message,and doesn't trigger the keydown event.
And also the multiline TextField doesn't has "return".
Is this a bug,or you do it purposely?
Sorry for my bad English.