JavaFX and Facebook, the solution

When I started this blog, I was rambling with Facebook, JavaFX and alternative technologies.
It turned out that JavaFX is not ideal for social application development, because of various reasons.
Let alone JavaFX, applets are also not very ideal for social application development, if a RIA is necessary Flash is the solution, not even Flex.
Anyway Turning a [...]

Flex: How to add enter event for RichTextEditor

I did this for RichTextEditor but it is applicable to any object.
Many of them have enter event, but RichTextEditor uses enter keys for new line so if you want enter to submit you should do it manually.

<mx:Script>
<![CDATA[
private function enterHandler(event:KeyboardEvent):void
[...]