Language in Flash

I want to use Arabic Language in my flash website so what
should i do , i can i use Arabic Language in Flashbase Website
?

Hi
i'll tell u some thing to try but im not sure
there is a programe you can useto write Arabic in flash
the programe name is "El-rasam el Araby"
sorry but i'm not sure
ta7ya maser ;)

Similar Messages

  • Hebrew language in flash

    Hi Experts,
    How to use Hebrew language in flash i.e right to left
    langauage.
    1.I need to display text in right to left using flash.
    2.How to display mouse over text for button.
    3.How to display mouse over text for static text.
    4.Is there any text limit in flash file.I have tried to copy
    50 pages text into flash text.But it copies upto 10 pages data
    only.
    5.How to load word doc file data in flash.
    Thanks,
    Gangadhar

    Hi,
    Arabian is just showing mad in the prevew, but as dynamic
    text and static text, the textfield set to right side orientation
    works well as my sample shows:
    http://www.www-dp.info/versailles/1/index_realSite.html
    (click for > languages > Arabian. Its fake text but it can be
    edited well with an Arabic writing device.
    With Adobe you also find two extesions for Flash - Arabic:
    check for: Persian Classes and PersianUnicode by Pedram
    Pourhossein -
    those ones script the RTL but I never used that.
    I hope that helps.
    J o e

  • **Arabic language in Flash**

    Hi guys......
    i like designing sites with flash program ..... but not in
    all things.....
    Why macromedia dont use the microsoft arabic typing
    technology ( in IE)
    the thing that I want to say is:
    when I select arabic text the letters split
    when I select english text all thing gos ok!!!! WHY ar not
    same as en ???????????????????????
    -- i'm bad in english -- Sorry

    Hi,
    Arabian is just showing mad in the prevew, but as dynamic
    text and static text, the textfield set to right side orientation
    works well as my sample shows:
    http://www.www-dp.info/versailles/1/index_realSite.html
    (click for > languages > Arabian. Its fake text but it can be
    edited well with an Arabic writing device.
    With Adobe you also find two extesions for Flash - Arabic:
    check for: Persian Classes and PersianUnicode by Pedram
    Pourhossein -
    those ones script the RTL but I never used that.
    I hope that helps.
    J o e

  • How can somebody make support for the Afghan(Pashto) language in flash?

    hello
    I didnt find support for an Afghan(Pashto) language in adobe
    Flash cs3 , is there a way which I can use the language with in the
    Flash CS3? If there is any software or other script formulas for
    that please write me the answer.
    thanks

    Hi just a shot in the dark..
    Have you fiddled with movieclips and the alpha property?
    Best regards
    Peter

  • Reliably calculating character bounds for Right-To-Left languages using flash.text.engine.* classes?

    I just filed a bug in the Adobe bugbase about this, but I thought maybe the community could help with a workaround (or point me in another direction if I'm looking at it wrong).
    I don't know an elegant way to describe the defect, but it's something like this:
    Create a Vector of ContentElements and add a TextElement containing a right-to-left string in a language such as Hindi (ex. "वह बाग़ में दोपहर का खाना ")
    Create a TextBlock with a GroupElement and use it to create a TextLine to display the right-to-left string
    Walk through each character in the right-to-left string and try to calculate its boundaries using the TextLine's "getAtomBounds" method.
    What I'm seeing in my test project is that the number of characters (atoms?) the TextLine reports is fewer than the number of characters that were in the original string. I was under the impression that TextLine would offer some method of automatically converting from a logical character index into a display index (to keep things simpler for the end user). That doesn't seem to be the case, and I don't see any way to use TextLine's methods to do that conversion.
    Am I overlooking something obvious?

    Update: I was missing something obvious!
    It seems like TextLine's getAtomTextBlockBeginIndex and getAtomTextBlockEndIndex methods were exactly what I was looking for. It just took me a while to find them and realize that. So to convert from a logical (unicode) character index to a display (atom) index, you can do this...
    private function getCharBounds( charIndex:int ):Rectangle {
         for ( var childIndex:int = 0; childIndex < textContainer.numChildren; childIndex++ ) {
              var textLine:TextLine = textContainer.getChildAt( childIndex ) as TextLine;
              for ( var atomIndex:int = 0; atomIndex < textLine.atomCount; atomIndex++ ) {
                   var charIndexRangeStart:int = textLine.getAtomTextBlockBeginIndex( atomIndex );
                   var charIndexRangeStop:int = textLine.getAtomTextBlockEndIndex( atomIndex );
                   if ( charIndex >= charIndexRangeStart && charIndex <= charIndexRangeStop ) {
                        var rectangle:Rectangle =
                             textLine.getAtomBounds(
                                  atomIndex );
                        var point:Point =
                             textContainer.globalToLocal(
                                  textLine.localToGlobal(
                                       new Point( rectangle.x, rectangle.y ) ) );
                        rectangle.x = point.x;
                        rectangle.y = point.y;
                        return rectangle;
         return null;

  • Need help understanding an example in Flex 4 Language Reference: flash.data.sqlstatement

    I don't understand how to use the example in Flash Builder. I read the link concerning this, but it's still unclear.
    1) Is this example a single file, or should the class definition be separate? I ask because I don't see any import statements at all, which makes me wonder how it would work.
    2) does init() act as the automatic entry point for this code, or is this function called from some unseen event?
    3) does dbStatement.itemClass = Employee represent the link between the main app and the class file?
    I've been looking all over for a solution to my problem in that I have 8 or 10 querries to a sqlite db in my main application and I would really like to move each to their own file, but I don't understand how to reference them from the main app, or how to share the results with the main app. I was hoping this was what I'm looking for.
    // Employee class definition
    package
        public class Employee
            public var name:String;
            public var ssn:String;
            public var id:uint;
            public override function toString():String
                return "id: "+ id.toString() + " name: " + name + " ssn: " + ssn;
    // using the Employee class as SQLStatement.itemClass
    var conn:SQLConnection;
    var dbStatement:SQLStatement;
    function init():void
        conn = new SQLConnection();
        conn.addEventListener(SQLEvent.OPEN, connOpenHandler);
        dbStatement = new SQLStatement();
        dbStatement.sqlConnection = conn;
        dbStatement.text = "SELECT id, name, ssn FROM employees";
        dbStatement.itemClass = Employee;
        var dbFile:File = new File(File.separator + "employee.db");
        conn.open(dbFile);
    function connOpenHandler(event:SQLEvent):void
        dbStatement.addEventListener(SQLEvent.RESULT, resultHandler);
        dbStatement.execute();
    function resultHandler(event:SQLEvent):void
        var result:SQLResult = dbStatement.getResult();
        if (result != null)
            var emp:Employee;
            var numRows:int = result.data.length;
            for (var i:int = 0; i < numRows; i++)
                emp = result.data[i];
                trace(emp.toString());
    Thanks
    Kristin

    Hi Kristin,
    1020: Method marked override must override another method.
    -overridesObject.toString
    There is popular misconception among ActionScripters about toString() method - if one want to provide custom implementation method of super class "override" keyword is needed.
    But in case of Object "toString" is dynamic and it is attached at runtime negating the need of overriding - instead implementation is to be provided by developer so one is not created at runtime. So one needs to just write her own: toString():String method.
    Methods of the Object class are dynamically created on Object's prototype. To redefine this method in a subclass of Object, do not use the override keyword. For example, a subclass of Object implements function toString():String instead of using an override of the base class.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Object.html#toString()
    hth,
    kind regards,
    Peter

  • Language gesture in Flash website

    Hi everyone,
    I'm having an issue with my current Ubuntu 10.04 installation.
    I use both chromium and flash player 10 and it works well for displaying content.
    But i'm unable to switch to other IME language on flash designed website.
    (To be more precise, i try to use Anthy keyboard - japanese - on my french desktop environment)
    Example: www.sharedtalk.com
    I'm using iBus for the keyboard management. I saw on some topic over the internet that this problem should be fixed in the last version of flash player and using chromium .. but unfortunately, the issue still remains !
    Here are the version of my softwares:
    -Ubuntu 10.04 LTS up to date
    -Chromium 5.0.342.9 (43360) Ubuntu
    -Flash Player 10.0.45.2
    Thank you for you help !
    MrAurélien

    Hi
    Thank you for helping but in fact i could not switch to japanese IME from a linux system until i try the last 10.1 beta version.
    I searched a little more about it and it seems that flash player for linux in previous version did not handle GTK message correctly, especially for keyboard switching.
    So the solution to my problem is to update flash plugin to the beta one, and replace on my system the .so library by the new one.
    Done! Now i can type japanese everywhere on the web !
    ** I'm very glad to end a 3years long lasting problem now! **
    Thank you again for you interest !

  • Anna update + language packs or flashing?

    Hello I've got kind of a big question here regarding the new Anna update, but there are some doubts I have that I could not find solutions to within this forum.
    Basically I've bought a C7 from my Vodafone dealer here in Australia but to fulfill my needs I gave it to the dealer to have Chinese installed. But I'm not sure if they flashed the phone or they simple installed a language pack. I need some advice on this, and my phone versions as as below:
    Release: PR1.2
    Software: 0.14.002
    Custom version: 0.14.062.C01.01
    Language: 0.14.002.28.01
    Type: RM-675
    So any professionals here may assist me in identifying whether this C7 was flashed into some other firmware that has Chinese on it or is it simply a language pack install? This phone was bought in Australia with only English support but now it has both English and SImplified Chinese.
    Second part of my question. I know that when updating Anna the language will revert back to the original language of the phone. Now, if my phone was just installed with language pack, it will revert back to English only. Whereas if it was flashed into, say, China Mainland firmware byt the dealer, it will still support Chinese, because the phone is practically the same as a Chinese bought OEM phone. Since all Nokia phones are practically the same with only exception of different firmware for different locales. Is my theory correct? 
    Assume the phone was flashed into Chinese firmware, by updating Anna, will both Chinese and English be available to me?  
    I know this is rather lengthy for a question but, any helpful input will be greatly appreciated, as I really want to use Anna and also keep my language support. Thanks. 
    Nokia C7-00 Symbian Belle RM-675

    they might have installed a language pack.
    flashing the firmware on Chinese only, you should only see Chinese and similar languages.
    yes the phones are the same, with some exceptions where some countries don't allow GPS for example.
    giving the phone to a service center to flash it with another firmware will void your warranty. and i don't see any reason to void it.
    flashing with Chinese, only Chinese and similar languages will be available to you, you might have English, but i doubt it.
    Greece Nokia X6 RM-559 v40.0.002

  • Flash components+VB isssue

    Hi,
    I am doing a project which involves flah UI ,XML and VB. The
    UI has two major Tree Compnents,One menu bar and a few Accordions.
    All of these are populated with XML. Now this is embedded in a VB
    application. The Flash swf will send data to the VB shell and the
    VB writes the XML data with the changes , what ever the user had
    done in the tree or accordion..(Adding or removing nodes or some
    thing like that).All works fine ..But when user reloads the
    application ..by clicking on a language selection menu item(To
    change the language), the flash application goes awry. All the data
    is loaded every field and compnents are populated with their
    corresponding XMLs ..But Nothing is clickable!.
    Tree nodes don't open, menu items dont open, accordions are
    not collapsing.But they all are showing data.
    Basic functionalites attached to simple buttons are
    working..but other that that no other component works in a way how
    it needs to work.
    The strange things is that, if we create an VB alert while
    changing the lanuage and reloading it again..IT WORKS.
    We tried with delays and reloading and all. Nothing solves
    the issue.
    Can anybody please tell me where the issue is?
    Note : The Project Worked well when it was deployed in a
    webserver with jsp as the backend.The only change made was in the
    way in which you send values to the backend.. apart from this the
    flash code is the same.
    Thanks And Regards,
    BlueSquid

    radu_cosma,
    > I start using a few flash components (combo, list) and
    it seems
    > they are too big, aprox 65k.
    For all the benefits brought by components, their KB weight
    is
    definitely a drawback. That said, the ActionScript 3.0
    components weigh
    less then their ActionScript 2.0 counterparts.
    > Probably there's a common library used for all user
    interface
    > components and that is imported in the project always.
    You nailed it. In fact, if you study the components in the
    ActionScript
    2.0 Components Reference or the ActionScript 3.0 Language and
    Components
    Reference, you'll see the hierarchical "family tree" common
    to all
    comonents, then common to groups of related components.
    > Is there any way to reduce the size of the swf, maybe
    import
    > ONLY what is needed, do we have that option?
    Unfortunately, you don't have that option. When you import a
    component,
    it weighs whatever it weighs; you're already importing the
    minimum that
    component needs. On the bright side, when you import a second
    component,
    the combined total KB is usually considerably less than the
    sum of each
    component's individual weight.
    David Stiller
    Co-author, Foundation Flash CS4 for Designers
    http://tinyurl.com/5j55cv
    "Luck is the residue of good design."

  • Flash trouble

    Here is what I need to do:
    I am trying to program next and a back buttons to navigate
    through a slide show. I have done this many times in older Flash
    versions but in the new cs3 Flash I am unable to do what I usually
    did. Can someone please give me the proper actions to apply to a
    back button and a next button? I know, it's probably simple. :)
    Thanks.
    Also, my old preloader doesn't work so if I could get help on
    the programming for that it would be a bonus!
    Here is what I got:
    WARNING: Text field variable names are not supported in
    ActionScript 3.0. The variable 'percentageOutput' used for an
    unnamed text field will not be exported.
    WARNING: Actions on button or MovieClip instances are not
    supported in ActionScript 3.0. All scripts on object instances will
    be ignored.

    tjc yeah,
    > I have done this many times in older Flash versions but
    > in the new cs3 Flash I am unable to do what I usually
    did.
    By default, Flash CS3 creates FLAs based on ActionScript
    3.0, and it's
    the language (not Flash CS3 itself) that is (probably)
    causing your
    headaches. Configure your Publish Settings for ActionScript
    2.0, and you'll
    be back in familiar territory.
    > WARNING: Text field variable names are not supported
    > in ActionScript 3.0.
    Bingo! You might just want to switch back to ActionScript
    2.0 for the
    time being. That will keep you productive while you find
    spare time to
    learn ActionScript 3.0.
    That said, text field variable names are a very old way --
    Flash 4 era,
    I think -- of displaying text in text fields. Even in
    ActionScript 2.0, you
    can forego the the var field of the Property inspector and,
    instead, give
    the text field an instace name, then refer to that instance
    name in your
    code. The instance name is what allows ActionScript to speak
    directly to
    your text field (or any object, really, including movie
    clips).
    Now that you can address your object -- in this case, a text
    field --
    how do you know what to tell it? What language does it speak?
    Fortunately,
    everything is laid out for you in the ActionScript 2.0 (or
    3.0) Language
    Reference. Since you're dealing with a text field, you'll
    want to look up
    the TextField class. Classes define objects, so they're
    effectively mini
    Owner's Manuals for the object at hand.
    You'll generally fine one or more of the following three
    categories in
    class entries: properties (characteristics), methods (things
    the object can
    do), and events (things the object can react to). In the case
    of TextField,
    you'll find the TextField.text property. That allows you to
    set the textual
    content of a given text field. To use this feature, you'll
    refer to a
    particular TextField instance -- meaning, whatever instance
    name you chose,
    such as myTextField -- then put a dot, then the desired
    property:
    myTextField.text = "Here's my message.";
    That's instead of setting a string variable and associating
    that
    variable with a text field. Just a different approach.
    ActionScript 2.0
    lets you do it either way, which makes AS2 a nice transition
    ground toward
    the new language.
    > WARNING: Actions on button or MovieClip instances
    > are not supported in ActionScript 3.0.
    Bingo again. :) Maybe change your publish settings for now,
    then make
    time to get used to the new paradigm. Here a a few articles
    that may get
    you started:
    http://www.quip.net/blog/2006/flash/museum-pieces-on-and-onclipevent
    http://www.quip.net/blog/2007/flash/making-buttons-work-in-flash-cs3
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Scripting Flash

    I have not been able to find a scripting forum for Flash, so please forgive me if this is the wrong forum...
    Some of you might have noticed the existance of Script Bay.
    It is a free panel for writing and running scripts and it works in the many of the CS programs including Flash. It currently supports ExtendScript and Javascript.
    As you might know, the only scripting language that Flash (the application) supports is Javascript. I am implementing AppleScript support in Script Bay for InDesign, Illustrator, and Photoshop. These apps have native support for these languages, so AppleScripts can be used to control the apps.
    It is possible to enable support of AppleScript (and maybe VB) in Flash and Fireworks as well, but such support would be of limited use, because the app cannot be controlled as there is no built in support for these languages. It would be possible to control external applications (such as other CS apps, the Finder, system events, etc.). My question is: would such functionality be useful or not?
    You can let me know your opinion using this really short survey.
    Any responses would be very much appreciated!
    Thanks,
    Harbs

    No, that's not what I mean at all.
    I'll use an example or two from InDesign which I'm more familiar:
    Imagine you have a document (or set of documents) which have many images which need to be processed in some way before the document is exported to pdf (like resampling or have some filter applied, etc.). You really need to invoke the scripting interface of Photoshop from InDesign to have this processing done. Now technically, this can be done using BridgeTalk, but just using applescript: "tell application "Photoshop"... is a whole lot easier!
    Another example (which is impossible using ExtendScript or Javascript alone) is batch processing a folder of documents and emailing the resulting pdfs to the correct recipients. The only way to control mail apps on Mac is by using AppleScript.
    This is just two of many reasons why you'd need AppleScript while automating InDesign.
    If my question is not yet clear enough: is there ever a need/use to control external apps from within Flash? Could you envision the utility of being able to control Photoshop or Illustrator while automating the creation of a swf or fla file? Could controlling Mail or Finder be useful? etc...
    Harbs

  • Flash 10.1.102.64

    Anyone know when the Flash 10.2.102.64 patch will be available on ZCM
    Patch Management?

    Originally Posted by GERWIL
    It's out now but I have had mixed results in deploying it. Not sure what the difference is between the "flash 10 plugin" and the "flash 10 active X". Are they seperate products?
    I'm thinking the first one is for a new install and the second one to update and existing installation.
    Adobe Flash Player 10.1.102.64 (Internet Explorer) for Windows (Full/Upgrade) (All Languages)
    Adobe APSB10-26 Flash Player 10.1.102.64 (Internet Explorer) for Windows (Update) (All Languages)
    Cheers
    "flash 10 plugin" are for FF, Safari, Chrome...
    "flash 10 active X" is for IE.
    Thomas

  • Downloading adobe flash player in english

    Hi,
    Adobe Flash will not update properly.
    I've tried a clean install by uninstalling the flash player, but when I tried to re- install Flash Player again something was wrong with it: the installer tried to install a dutch version of Flash Player. I think I was in holland when I first downloaded this program.
    I tried to select option "Want Flash Player for another PC?" - but it had no option to chose the language - it indicated the correct ox s system for download.
    But when the file downloaded & I ran it - guess what? Yes, exactly - it started to install Flash Player in Dutch!
    So I have a question: how can I install English-localized Flash Player and prevent myself from seeing again the Dutch download?
    I have no idea why the Dutch player keeps installing after (i think  ) a complete uninstal...
    Thanks in advance and best regards,
    M

    Hello Martin,
    The Flash Player installer is a universal installer that contains localized text for all supported languages.  Flash Player uses the system locale (language and region) when identifying the language to display.  Perhaps this setting was modified when you were in Holland.  What operating system are you using?
    Maria

  • Flash Pro CS5.5+AS3 + iOS (iPhone) build specifically

    To start with, I really need some simple, definative examples of building a Facebook app for the iPhone using Flash Pro CS5.5+AS3 + iOS (iPhone).
    There are endless examples for nearly every platform on the planet - except this one, and in nearly every language except Flash Pro CS5.5+AS3 + iOS (iPhone).
    This is just one I have found that has some very good descriptions - albeit using coding other than what I want - but there is a link at the bottom to a downloadable AS sample.
    http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/
    So in simple terms.
    I'm using
    Flash Pro CS5.5+AS3 + iOS (iPhone)
    I have the
    GRAPH 1_8_1.swc files ... and as near as I can figure, I use the mobile.swc version?
    My problem is that I don't see a lot of development on the Adobe discussion forums specifically targeted at the iOS iPhone/iPod touch model
    Does anyone know of good tutorials, samples, (please no videos - impossible to follow usually, and often very poorly done...)
    I want to be able to Authorize a user for Facebook, and store the login in a "private var sharedObj:SharedObject;" setup, and the authorization is done in a StageWebView setup,
    and after all is authorized, the webview closes, and the user then only has to tap a button, and a pre-formatted string is posted to their newsfeed, any time they press the Post to Facebook button, the updated string will be posted.
    Simple really. I don't want lists of friends, photos images or even to be able to read the newsfeed - just post to it.
    but ... I can't find a darn thing.
    thanks

    the project panel is just a convenience panel for you to use to access your flash project's files without using a file browser.  it has nothing to do with your publish settings.
    if you don't see a great need to forego using your file browser, join the crowd.  the project panel was an idea with no great benefit.
    someone probably made a big to-do about it and got enough people to vote for the feature so adobe added the feature.  and then found nobody cared so, it's not going to be in the next flash pro version.

  • 6131 Add New language Not Listed After SW upgrade ...

    Hello Every body,
    I flashed my 6131 from Version V3.70 to V5.50. Everything Seems to be fine but Greek Language is not listed.
    Greek Language was supported by previous firmware.
    Any possible solutions ?
    Thnask you in advance

    Hello Ivotsis,
    everything depends on product code of your Nokia 6131. You find this code under the battery. For example my product code is 0532273.
    Sometimes happens, that the phone you bought probably in Greece is originally designed for other country and your language pack was flashed into your phone later by the reseller.
    In this situation, if you use Nokia Software Updater it downloads firmware with language pack according to your phone's product code, where greek language is missing.
    In other forum here is possible to check the product code of your phone against the language you need (before flashing the firmware) to know, if your language after flashing will be available or not.
    In your situation is necessary, I'm afraid, to visit Nokia service center with request to flash firmware again with correct (greek) language pack. It may cost some money.
    Best regards,
    Tomas

Maybe you are looking for