how to handle special characters

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default how to handle special characters

    hi guys,
    im workin on a project which require integration between mysql - xml - flash.
    but im stuck with special characters (like ' " - &)which always appear as boxes
    (?) in flash dynamictext although i have turn on html rendering capability.
    The strangest thing is the characters is readable when i open the xml document
    in notepad or directly open from mysql via phpMyAdmin

    Please help

    -ajie

    YPAJIE Guest

  2. Similar Questions and Discussions

    1. how to handle special characters?
      hi guys, im workin on a project which require integration between mysql - xml - flash. but im stuck with special characters (like ' " - &)which...
    2. #24934 [Opn->Bgs]: create_text_node() does not handle special characters
      ID: 24934 Updated by: rrichards@php.net Reported By: tony at marston-home dot demon dot co dot uk -Status: Open...
    3. #24934 [Fbk->Opn]: create_text_node() does not handle special characters
      ID: 24934 User updated by: tony at marston-home dot demon dot co dot uk Reported By: tony at marston-home dot demon dot co dot...
    4. #24934 [Opn->Fbk]: create_text_node() does not handle special characters
      ID: 24934 Updated by: rrichards@php.net Reported By: tony at marston-home dot demon dot co dot uk -Status: Open...
    5. #24934 [NEW]: create_text_node() does not handle special characters
      From: tony at marston-home dot demon dot co dot uk Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: DOM XML...
  3. #2

    Default Re: how to handle special characters

    to the sources...
    [url]http://www.macromedia.com/support/flash/ts/documents/url_encoding.htm[/url]

    else u can use this function in your first frame:
    System.useCodepage=true; //flash mx2004

    this function make your code shows them.

    ClauĞio - Flash Developer - www.websigns.com.ar - Guest

  4. #3

    Default Re: how to handle special characters

    In your PHP code try escaping the text before you send it out to Flash. This
    will output the text as URL encoded text and I don't believe you will need to
    unescape it when it comes into flash. To do this in ASP all you would need to
    do is escape(string) and you're set. Not sure what the PHP function is.

    puterart1 Guest

  5. #4

    Default Re: how to handle special characters

    Make sure your XMLs are set to UTF-8, that might also be causing problems.
    apodkolinska Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139