Writing arabic text in flash and making it rotation ?
Hi,
Writing Arabic text in flash and making it rotation ?
so guys any help?
I am using FLASH CS3
1)using dynamic arabic text
2)specific font embed in swf
3)text is tilt or rotation (8)
4)arabic text starts from right to left(opps eng)
------------------------
loading dynamic text i.e.
Quote:
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, loadXML);
loader.load(new URLRequest("data.xml"));
function loadXML(e:Event):void
{
myText.htmlText = new XML(e.target.data);
};
codes i.e.
embed font which is not working
Quote:
[Embed(source='/assets/verdanab.ttf', fontName="Font", mimeType="application/x-font-truetype")]
mytextField.htmlText = '<font face="Font">My text</font>';