Javafx 2.0 Arabic Text Wrong Order

I'm new to JavaFx 2.0 and I'm having a problem with Arabic text where javafx is printing it in the wrong order. I tried to find a solution on the internet but there is no about it. So, does anyone have an idea how to fix this problem in JavaFx 2.0?

+3


source to share


2 answers


Unfortunately, bidirectional text is not yet supported.



You can track and vote on the related feature request: http://javafx-jira.kenai.com/browse/RT-17411

+5


source


JDK8 mailbox access has right to left support. There Node has a methodsetNodeOrientation(NodeOrientation.RIGHT_TO_LEFT);



+4


source







All Articles