Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I display arabic text from right to left with as3?

share|improve this question

6 Answers

up vote 4 down vote accepted

This code will do the trick:

import flash.text.AntiAliasType;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.external.*
import fl.text.TLFTextField;
import flash.text.TextFormat;

import flashx.textLayout.formats.TextLayoutFormat;
import flashx.textLayout.elements.TextFlow;


var arabicTextField:TLFTextField = new TLFTextField();
arabicTextField.antiAliasType = AntiAliasType.ADVANCED;
arabicTextField.mouseEnabled = false;
arabicTextField.selectable = false;

arabicTextField.direction = flashx.textLayout.formats.Direction.RTL;

var fmt:TextFormat = new TextFormat();
fmt.color = 0xFFFFFF;
fmt.font = "arialArabic"
arabicTextField.embedFonts = false;
arabicTextField.defaultTextFormat = fmt;
arabicTextField.setTextFormat(fmt);
share|improve this answer
arabicTextField.direction = flashx.textLayout.formats.Direction.RTL; Thanks a bunch! – heartcode Sep 12 '11 at 14:48

The Text Layout Framework can handle right to left text.

share|improve this answer

Additionally, you probably will need to include the fonts you use in your library

share|improve this answer
1  
No, including fonts isn't necessary. – Mudasir Bhutto Apr 11 '11 at 0:14

try to add textformat with propriety right alignment

var txtFormat:TextFormat = new TextFormat();
txtFormat.align = "right";
share|improve this answer
Providing a screenshot would get you bonus points :) – Austin Henley Sep 22 '12 at 3:58
are you sure that this alone works for correct display of RTL languages? cause i think this just make everything right aligned – clamp Mar 6 at 9:14
Try a swc component named flaraby that help in RTL langauges – Yosra Nagati Mar 6 at 15:18

I've also had success with FlarabySWF - it costs some money (not alot) but it actually works quite well in my experience.

share|improve this answer

If you're not opposed to the flex framework, it now includes a decent internationalization library that should allow you to do this easily. Here's a decent place to get started http://devgirl.org/2011/03/15/flex-4-localization/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.