Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

writing arabic or Urdu text in Texfiled using flashCS4 and AS3

Guest
Dec 17, 2008 Dec 17, 2008
Can we use text framework for writing Urdu or Arabic text in input text field. Using left to right direction as Urdu is Written. how can we import Urdu text or Arabic in text framework demo, i tried but it didn't work......
TOPICS
Text layout framework
4.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Jan 06, 2009 Jan 06, 2009
You may be seeing a known bug with inputing text into Flash Player 10. Depending on the language and the platform you are running, some complex scripts cannot currently be typed (although they can be displayed).

From our release notes:

quote:

Limitations on Keyboard Input of International Scripts: Some international scripts using Unicode encoding cannot be typed into Flash Player 10 on Macintosh OS or Windows. While all writing scripts supported by Flash Player 10 can be displayed correctly
...
Translate
Adobe Employee ,
Jan 06, 2009 Jan 06, 2009
You may be seeing a known bug with inputing text into Flash Player 10. Depending on the language and the platform you are running, some complex scripts cannot currently be typed (although they can be displayed).

From our release notes:

quote:

Limitations on Keyboard Input of International Scripts: Some international scripts using Unicode encoding cannot be typed into Flash Player 10 on Macintosh OS or Windows. While all writing scripts supported by Flash Player 10 can be displayed correctly, keyboard input for some of these scripts may not function. Keyboard input will work correctly for several writing scripts including Roman, Chinese, Japanese, Cyrillic, and Central European languages on both Windows and Macintosh. On the Windows platform, typing works correctly only for writing scripts such as Arabic, Hebrew or Thai that have Windows codepages.


Is this what you were looking for?
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 25, 2009 Feb 25, 2009
Hello,

We are using flash MAC OS X CS 4 / Action Script 3 to add a flash gallery online. (Using XML file as input for where images are and what the captions say)

So we have a dynamic text box for text (this is where the text goes when flash is viewed live) how can I get it to read the arabic text in the XML file and display it without it being jumbled up. Currently english displays and works fine. Whenever I change text to arabic in the XML flash jumbles them up.

Thank you!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 25, 2009 Feb 25, 2009
hi. I have just solved this problem. See XML process everything in it except CDATA Tag. Try to use CData tag in XML and send urdu in it. just like that....

quote:


<gfx>
<firstname><![CDATA[سپریم کورٹ کی طرف سے ]]></firstname>
<lastname><![CDATA[سپریم کورٹ کی طرف سے ]]></lastname>
<desig><![CDATA[ سپریم کورٹ کی طرف سے]]></desig>
</gfx>



hope it may help you and Also NOTE. set the text box font to URDU, by installing Urdu into your system.
reply if any more problem
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 25, 2009 Feb 25, 2009
Hello, thanks for replying so fast, I tired playing with CDATA and not sure how it works in XML or how to assign languages to it, Also how to set the font box to a certain arabic language, I have arabic in my system but flash dosent do it well ( I added an attachment of how the text looks like , I just typed some text in the field to show u what happens.)

Also can you show me where I should add the CDATA in XML or how to format it properly I will be really grateful!


quote:


<?xml version="1.0" ISO-8859-6"?>
<gallery>
<album title="My Pictures Test 1" lgpath="gallery/album1/large/">
<img src="1.jpg" caption="العربي" />
<img src="2.jpg" />
<img src="3.jpg" />
<img src="4.jpg" />
<img src="5.jpg" />
<img src="6.jpg" />
</album>
</gallery>



Thank you in advance!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 25, 2009 Feb 25, 2009
LATEST
quote:


<gallery>
<album title="My Pictures Test 1" lgpath="gallery/album1/large/">
<img>
<src>1.jpg</src>
<caption><![CDATA[العربي ]]> </caption>
</img>
<img src="2.jpg" />
<img src="3.jpg" />
<img src="4.jpg" />
<img src="5.jpg" />
<img src="6.jpg" />
</album>
</gallery>



it is XML you can do it nay way
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines