A Flash Developer Resource Site

Search:

Type: Posts; User: jossifresco

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    392

    ... and this one: ...

    ... and this one:

    http://www.macromedia.com/support/flash/languages/unicode_in_flmx/
  2. Replies
    1
    Views
    392

    All you wanted to know about using Unicode in...

    All you wanted to know about using Unicode in Flash MX:

    http://www.macromedia.com/support/flash/ts/documents/unicode.htm

    There are a few things missing: support for Unicode on the clipboard....
  3. I have no problems reading XML encoded as UTF-8....

    I have no problems reading XML encoded as UTF-8. I have succeeded with Greek and Slovenian. Actually, this is the recommended way to load UTF-8 or UTF-16 into MX!

    Just make sure that indeed the...
  4. Replies
    1
    Views
    414

    DO not use include. Simply create a text file...

    DO not use include.

    Simply create a text file as follows:

    myTextVar=Type here your text, including Carriage Returns

    like this one

    and this one&
  5. Replies
    3
    Views
    590

    You need to use the HTMLtext property and not tbe...

    You need to use the HTMLtext property and not tbe variable name:

    If the dynamic text field has variable named myHTMLtext and you do:

    MyHTMLText=ContentsOfLoadedFile;

    ... it will fail.

    Nut...
  6. Replies
    3
    Views
    691

    Undocumented

    Try this:

    // list all the predefined objects and functions
    ASSetPropFlags(_global, null, 8, 1);
    for (i in _global) {
    trace(i);
    for(j in eval(i).prototype){
    trace("\t\t" + j);
    ...
  7. I have checekd this extensively and these are my...

    I have checekd this extensively and these are my findigs on the shortcomings of Flash MX support for Unicode:

    1. Copy-paste (Clipboard support) only works on Codepage (meaning that the MX...
  8. Replies
    6
    Views
    987

    Re: how to format to UTF8 when data comes from CF?

    I got it to work by escaping the characters with \u

    For example to display character Ç

    Use: \u00C7

    00C7 is the Unicode character for Ç. You can find the Unicode chars values by running...
  9. Replies
    11
    Views
    1,701

    I got it to work by escaping the characters with...

    I got it to work by escaping the characters with \u

    For example to display character Ç

    Use: \u00C7

    00C7 is the Unicode character for Ç. You can find the Unicode chars values by running...
  10. I got it to work by escaping the characters with...

    I got it to work by escaping the characters with \u

    For example to display character Ç

    Use: \u00C7

    00C7 is the Unicode character for Ç. You can find the Unicode chars values by running...
  11. yes. I got it to work by escaping the characters...

    yes. I got it to work by escaping the characters with \u

    For example to display character å

    Use: \u00E5

    00E5 is the Unicode character for å. You can find the Unicode chars values by...
  12. The only way I magaged to get unicode text into...

    The only way I magaged to get unicode text into MX is as follows:

    System.useUnicode = true;
    test_txt.text = "this is a test for Unicode Char 010D - \u010D"

    test_txt is a Dynamic text box set...
  13. Replies
    2
    Views
    824

    var cal = i; i = 1; if...

    var cal = i;
    i = 1;
    if (this.hitTest(_root.box1)){
    _root.score = i++;
    }
    } [/B][/QUOTE]

    Don't use the variable method. Use the object method:

    Assuming yoor score field is given an...
  14. Replies
    12
    Views
    1,379

    Yes. Create a new movie with a preloader. On...

    Yes. Create a new movie with a preloader.

    On the preloader event, load your main movie.
  15. Replies
    4
    Views
    1,336

    Re: In windows XP seeing nothing too

    It works only if you use device fonts (i.e. _serif) and you set the text box not to use embeded fonts.

    You also need to set the text using the text object instead of a variable:
    ...
  16. Replies
    13
    Views
    2,379

    Re: Without Unicode support in Clipboard how do you do Static Text??

    There is only one way...

    Create all your text boxes as dynamic text boxes. With font embedding OFF

    Set the font to one of the fonts that support Chinese characters

    Give the text boxes an...
  17. Replies
    6
    Views
    917

    Greek

    The only way to ake it work is to use device fonts (_serif, _sanserif and _typewriter)

    - Set the text to Dynamic
    - set the text to one of these fonts

    Create the XML file in Windows XP in...
  18. Replies
    6
    Views
    787

    No Unicode support in clipboard

    Unfortunately, the clipboard in MX does not seem to support Unicode.... just WinAnsi encoding.

    -- Jossi
  19. Replies
    6
    Views
    787

    Use Windows XP Notepad. File Save As, text -...

    Use Windows XP Notepad.

    File Save As, text - Encoding UTF-8

    At the top of the file write:
    \\!--UTF-8


    -- Jossi
  20. Replies
    13
    Views
    2,379

    Re: Thank You!

    In WIndows XP, use NotePad to type chars and do File Save As > text > encoding: UTF-8

    At the top of the file add a header like this:
    \\!--UTF-8

    to let flash know that it is a UTF-8 encoded...
  21. Replies
    6
    Views
    917

    Yet another frustrating thing in the current...

    Yet another frustrating thing in the current support for Unicode in Flash MX:
    Clipboard DOES NOT support unicode, only some kind of extended ASCII.
    So here I am, using two modern OS (Mac OS X and...
  22. Replies
    36
    Views
    4,581

    Of course you can...

    I have developed a shopping cart that works with Authorize.net.

    It uses Flash 5.0 as the front-end (much easier now with all the GUI components) and Perl 5 as the middleware.
  23. Replies
    4
    Views
    1,336

    Big problem.... If you use Unicode characters...

    Big problem....

    If you use Unicode characters (let's say Greek) on a static field, these display OK on the SWF.

    But if you set the text field to Dynamic and select "Embed Font Outlines" - All...
  24. Finally...

    Finally I got through to get my upgrade...

    The most upsetting thing is to know that the problem was NOT withe the large number of downloads. They use VBox to do the downloads for them. The...
  25. Replies
    27
    Views
    1,447

    When did you get it? I keep trying and only...

    When did you get it?

    I keep trying and only get the message that "Due to overwhelming demand...."

    It should say instead:

    "Due to pi**ed poor planning and abimsal execution, we are unable to...
Results 1 to 25 of 36
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center