CuePointNames with foreign characters

Updated an application to Director 11.5 and have some problems with danish characters in the cuepointNames.
The application have worked the last 5 years, but now it behaves really strange.
I've tried to set the codePage when Updating movie to several different  tables, but still the same problem.
I can't even change the name myself, 'cause there's a difference between whats in memory and what it shows in the variable.
Does anyone have any idea what's wrong ?
Thanks in advance
cheers
John Kanding

But what's the system/logic in a word like "køber" ends up in "kk" ?
A little further analysis shows just how wrong Director/Lingo gets it. I amended your movie script to
on startMovie
  mem = member(1,2)
  mem.url = "@/udtale_fokus.swa"
  mem.preLoadBuffer()
  mem.soundChannel = 2
  play (mem)
  cp_names = duplicate(mem.cuePointNames)
  len = cp_names[1].length
  put cp_names, len
  repeat with c = 1 to len
    tChar = cp_names[1].char[c]
    put tChar, charToNum(tChar)
  end repeat
  jsCharCodes(cp_names[1])
end
and added a JavaScript syntax function to a new movie script:
function jsCharCodes(str) {
   var len = str.length;
   trace("length: " + len + " " + str);
   for(var i = 0; i < len; i++){
     trace(i + " " + str.charAt(i) + " " + str.charCodeAt(i));
and I get the following output in my message window:
-- ["kber"] 2
-- "k" 107
-- "ber" -1
// length: 4 kber
// 0 k 107
// 1 b 98
// 2 e 101
// 3 r 114
Note that the 3rd line above ( -- "ber" -1) displays in my message window as ( -- """ -1)

Similar Messages

  • ITunes crashes on attempt to play media with foreign characters

    Recently, over the last few versions I have been unable to play any of my media that includes foreign characters, be it Asian characters or accented Roman characters. The fact of the matter is that upon attempting to play a song / audiobook / movie with a foreign character iTunes crashes.
    I am using iTunes 10.6.1.7 on Windows 7 64-bit in English (UK) with non-unicode set to Japanese.
    Windows crash report:
    Problem signature:
      Problem Event Name:          BEX
      Application Name:          iTunes.exe
      Application Version:          10.6.1.7
      Application Timestamp:          4f71aced
      Fault Module Name:          amip.dll
      Fault Module Version:          2.6.7.0
      Fault Module Timestamp:          4b63548c
      Exception Offset:          000b5954
      Exception Code:          c000000d
      Exception Data:          00000000
      OS Version:          6.1.7601.2.1.0.256.48
      Locale ID:          2057
      Additional Information 1:          3191
      Additional Information 2:          319160cfbcc1295d9ca9b4d448d8f7e3
      Additional Information 3:          62c3
      Additional Information 4:          62c3b5fb8ab287fc898b342b661d3806
    The media with foreign characters syncs with my iPhone okay, and will play without issue on it; just iTunes is unable to play said media on my computer, which is highly frustrating.
    I would be appreciative if someone has found and would share any work-around to this problem. Thanks.

    I still have no thorough concept on how I have solved this but I suppose if anyone else has encountered this issue I can share how I worked around it:
    I changed my windows system non-unicode locale back to its default (English UK).
    I then installed Microsoft AppLocale to handle the programs that would be affected.
    For experimental reasons I then set my iTunes executable to have Japanese locale through the AppLocale program.
    It now operates fine and will play files with foreign characters.
    Try it if you experience the problem's I've been having.

  • Image with foreign characters in name won't display

    I have an image on my drive whose name has foreign characters ("c�pia de frente.jpg"). To display the image my JSP reads the image name from the database and generates the following html:
    <img src="../pictures/c�pia de frente.jpg">The page then displays a broken image icon for this image. Images in the same list which do not have foreign chars get displayed accurately. When I choose "show image.." in my browser I see that the image name has been rewritten into the following: c%C3%B3pia%20de%20frente.jpg. The rewriting that will display the image is instead c%F3pia%20de%20frente.jpg. I found the correct rewriting on another of my JSP where the image with the foreign chars actually gets displayed correctly although the code to generate the html is the same on both pages and looks something like this (simplified):
    <logic:iterate id="listelement" name="list" property="rows" scope="request" type="org.apache.commons.beanutils.DynaBean">
    <%         
    out.write("<img src=\"../pictures/"+listelement.get("name").toString()+"\">");
                             %>  <br>                     
                            </logic:iterate> Every image that doesn't have foreign chars in its name gets displayed accurately but images with foreign chars in their names won't display. What am I doing wrong?
    Thanks
    Niklas

    Thanks, but it doesn't seem necessary to replace foreign characters. It works without replacing in one place but not in another which is confusing. I think it is something with the enconding but can't see what the difference is between the working and non-working code. In both pages I have put <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">I'd greatly appreciate any more suggestions to solve this problem.

  • Character Encoding for IDOC to JMS scenario with foreign characters

    Dear Experts,
    The scenario is desribed as follows:
    Issue Description:
    There is an IDOC which is created after extracting data from different countries (but only one country at a time). So, for instance first time the data is picked in Greek and Latin and corresponding IDOC is created and sent to PI, the next time plain English and sent to PI and next Chinese and so on. As of now every time this IDOC reaches PI ,it comes with UTF-8 character encoding as seen in the IDOC XML.
    I am converting this IDOC XML into single string flat file (currently taking the default encoding UTF-8) and sending it to receiver JMS Queue (MQ Series). Now when this data is picked up from the end recepient from the corresponding queue in MQ Series, they see ? wherever there is a Greek/latin characters (may be because that should be having a different encoding like ISO-8859_7). This is causing issues at their end.
    My Understanding
    SAP system should trigger the IDOC with the right code page i.e if the IDOC is sent with Greek/Latin code page should be ISO-8859_7, if this same IDOC is sent with Chinese characters the corresponding code page else UTF-8 or default code page.
    Once this is sent correctly from SAP, Java Mapping should have to use the correct code page when righting the bytes to outputstream and then we would also need to set the right code page as JMS Header before putting the message in the JMS queue so that receiver can interpret it.
    Queries:
    1. Is my approach for the scenario correct, if not please guide me to the right approach.
    2. Does SAP support different code page being picked for the same IDOC based on different data set. If so how is it achieved.
    3. What is the JMS Header property to set the right code page. I think there should be some JMS Header defined by MQ Series for Character Encoding which I should be setting correctly) I find that there is a property to set the CCSID in JMS Receiver Adapter but that only refers to Non-ASCII names and doesn't refer to the payload content.
    I would appreciate if anybody can give me pointers on how to resolve this issue.
    Thanks,
    Pratik

    Hi Pratik,
         http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42?quicklink=index&overridelayout=true
    This link might help.
    regards
    Anupam

  • Sorting of contacts with foreign characters in the name

    Hello,
    I have a large address book, some with Japanese characters in their name.
    I'm on English Language setting for the OS on my iphone and ipad.
    All the contacts with Japanese characters in their name seem to get pushed to the # section of the alphabet rather than at the equivalent roman alphabet letter.
    Also note that adding the Japanese name in the secondary fields of "phonetic first" and "phonetic second" of an existing Roman English based contact sends this to the # section.
    This is poor sorting of contacts. 
    Very poor....

    After posting this I found a solution.  I hadn't tried it this way round.
    https://discussions.apple.com/message/7589528#7589528
    Go into one of your Japanese contacts and click edit.
    Go right to the bottom of the edit page and add field, add phonetic first name, then repeat the step to add phonetic last name.
    Now edit the name of your contact, keep their name in Japanese and enter the phonetic spelling in English.
    Smashin....  :-)

  • Bug in Application Export? Globalization messages with foreign characters

    I've encountered a problem with Shared Components, Text Messages. I input some strings using Norwegian characters (øæå).
    When I export the application, the characters come out with the wrong encoding in the SQL script (and the messages display wrong when the application is imported and run).
    Here's an example:
    prompt ......Message test_nor_chars
    declare
    h varchar2(32767) := null;
    begin
    h:=h||'Test av æøå ÆØÅ hei hei';
    wwv_flow_api.create_message (
    p_id=>1700323001958037277 + wwv_flow_api.g_id_offset,
    p_flow_id=>wwv_flow.g_flow_id,
    p_name=>'TEST.NOR.CHARS',
    p_message_language=>'no',
    p_message_text=>h);
    null;
    end;
    The string
    'Test av æøå ÆØÅ hei hei'
    should be (was entered as, and displays in the Apex builder as)
    'Test av æøå ÆØÅ hei hei'
    I thought this was a problem with my local database, but I was able to reproduce this on apex.oracle.com as well.
    Is this a bug, or just me doing something wrong?
    - M

    >
    Why is this? I really have no idea. I've seen a lot of globalization issues, but this one just seems like an underlying database bug, and certain manipulation of an in-memory CLOB. I'll take a look at it further, but hopefully this workaround (by specifying a dummy application attribute with Norwegian characters) can at least get you going.Hi Joel,
    thanks for looking into this. I did as you suggested and put some Norwegian characters into the Application Comments section. I then exported the application and the characters did not get corrupted in the export file.
    However, when I import the application from the file (using SQL Developer's "Import Application..." menu item) into another database, the strings end up with corrupted characters in the database. This happens both for the Application Comment (which I can see in flows_030100.wwv_flow_banner) and the messages (flows_030100.wwv_flow_message$) which have Norwegian characters. This is strange, as it looks OK in the export script, but ends up wrong in the database when the script is run...
    I tried the same at apex.oracle.com (exported app id = 52885 and imported it as app id = 63067), and it seems to be okay there. There is an option when you import an application through the web interface to select character set (which defaults to UTF-8, I used this). This choice is not available when importing through SQL Developer. Could this be relevant?
    (The reason I use SQL Developer to import the app is because the server has a runtime-only installation of Apex.)
    Would appreciate if you could look further into this. Thanks,
    - Morten

  • Problems with foreign characters

    I've had the problem of iTunes not displaying foreign (Japanese in my case) characters. I do have proper language packs installed and I've seen these characters work on other people's computers. My iPod displays them perfectly too. Is there a setting within iTunes I need to change?
    I've also already tried a reinstall of Windows and a reinstall of iTunes.

    Have a look at Tome Gewecke's User Tip and let us know if it provides any helpful information for you.

  • When exporting UTF-8 encoded HTML page to PDF, Foreign characters won't display correctly.

    I'm not sure if this is a PDF issue or a PHP issue, I have tried asking this in several forums with no working result, and I hope this is the right place to post this question... if not please let me know of another forum.
    here's my PHP code.
    $test_label = 'の契約';
    $result = html_entity_decode($test_label, ENT_QUOTES, 'UTF-8')
    PDF_show_xy($pdf, $result.": ".$order_date , SECTION_START_X+TEXT_LEFT_PADDING, 750+((SECTION_TITLE_BOX_HEIGHT-5)/2));
    the UTF-8 encryption is correct, because the web browser displays all the characters correctly.
    Problem:
    Problem occurs when I try to export the HTML into PDF.
    All I'm getting in my pdf export is a bunch of gibberish. Is there a PDF add-on/plug-in that I'm suppose to install? or is my encoding function called incorrectly wrong.

    oh, sorry if I was unclear.
    I use PHP's PDF functions to create PDF files that looks like my html page.
    here are the functions
    http://us2.php.net/manual/en/ref.pdf.php
    anyway my question is, if there is a setting or a addon/plug-in/third party program that I have to download for Adobe Reader to display foreign language?
    and if anyone knows PHP, am I using the correct decoding function?
    If I'm on the wrong forum, can anyone direct me to the correct one?
    I can't seem to find any resources on exporting HTML pages with foreign characters to PDF using php.

  • Mail: Received mails - addresses with foreign chars

    Hi
    It's hard to describe my problem in the topic
    I am using Apple Mail, currently Version 2.1.1 (752.3). Now I have a weird issue with mail addresses. When I receive email (mostly from our company's outlook users), some of the mail adresses in the TO or CC fields are split and unusable. An example: I receive a mail with CC to a guy called "René Füglister". His mail address would be [email protected] or something. The sender sent the mail to "René Füglister <[email protected]>". Now, my CC line looks like this:
    Füglister, René Füglister <[email protected]>
    When I try to reply to all now, it tries to reply to "Füglister" and "René Füglister <[email protected]>". The fist one is obviously wrong and gets rejected by the mail server.
    I have experienced this ONLY with foreign characters. What can I do?
    Thanks for any hint!
    Cheers
    Rico
    PS: It didn't help to change my app language from English to German :-/
    MacBook Pro   Mac OS X (10.4)  

    Chaps, any idea on this?

  • Reading a text file with foreign language characters

    I'm trying to convert foreign language characters to English looking characters.  I have code that works, but only if I hard code the string with foreign language characters and pass it to the function. I cannot figure out how to get my program to read
    in the foreign characters from my file, they come in as garbage. 
    Since the function works when I pass a hard coded string to it, I'm pretty sure the problem is the way I have the Streamreader set up, it's just not reading the characters correctly...
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim FileRdr As StreamReader = New StreamReader "m:\test\charReplace.txt", System.Text.Encoding.UTF7)
    Dim ReplaceWrtr As StreamWriter ReplaceWrtr = System.IO.File.CreateText("M:\test\CharReplaceOut.txt")
    Do While FileRdr.Peek() >= 0
    Dim currentRec As String = FileRdr.ReadLine
    removeAccent(currentRec)
    ReplaceWrtr.WriteLine(currentRec)
    Loop
    ReplaceWrtr.Close()
    End Sub
    'Replace foreign language characters with English characters
    Function removeAccent(ByVal myString As String)
    Dim A As String = "--"
    Dim B As String = "--"
    Const AccChars As String = "ŠŽšžŸÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðñòóôõöùúûüýÿ"
    Const RegChars As String = "SZszYAAAAAACEEEEIIIIDNOOOOOUUUUYaaaaaaceeeeiiiidnooooouuuuyy"
    For i As Integer = 1 To Len(AccChars)
    A = Mid(AccChars, i, 1)
    B = Mid(RegChars, i, 1)
    myString = Replace(myString, A, B)
    Next
    removeAccent = myString
    End Function
    I know that removing the accent changes the meaning of the word, but this is what the user wants so it's what I need to do. 
    Any help is greatly appreciated!! :)
    Thanks!
    Joni

    Finally got it to work.  I had to remove the first 5 characters from the replacement string (ŠŽšžŸ), couldn't find encoding that would handle these, and to be honest, I didn't really need them.  The important ones are still there, was probably
    just overkill on my part.
    UTF7 worked for the rest...
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim FileRdr As StreamReader = New StreamReader("m:\test\charReplace.txt", System.Text.Encoding.UTF7)
    Dim ReplaceWrtr As StreamWriter
    ReplaceWrtr = System.IO.File.CreateText("M:\test\CharReplaceOut.txt")
    Do While FileRdr.Peek() >= 0
    Dim currentRec As String = FileRdr.ReadLine
    removeAccent(currentRec)
    ReplaceWrtr.WriteLine(currentRec)
    Loop
    ReplaceWrtr.Close()
    End Sub
    'Replace foreign language characters with english characters
    Function removeAccent(ByRef myString As String)
    Dim A As String = "--"
    Dim B As String = "--"
    Const AccChars As String = "ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðñòóôõöùúûüýÿ"
    Const RegChars As String = "AAAAAACEEEEIIIIDNOOOOOUUUUYaaaaaaceeeeiiiidnooooouuuuyy"
    For i As Integer = 1 To Len(AccChars)
    A = Mid(AccChars, i, 1)
    B = Mid(RegChars, i, 1)
    myString = Replace(myString, A, B)
    Next
    removeAccent = myString
    End Function
    Thanks for all your help!  Greatly appreciated :)
    -Joni

  • Dynamic Text Field is not displaying foreign characters... HELP!

    I have a dynamic text field that is not displaying foreign characters properly. They appear as boxes.
    Here's what I've tried.
    Under properties for the text field, I clicked on the embed characters button. In there, I pasted all the special characters I would need and clicked okay. Shouldn't this be enough for the text to display properly? What am I missing? Please help...

    More info: I'm noticing that in the actual dynamic text field in my .FLA file, if I type a foreign character like é, it pops up as a block. My family font is set to New Caledonia... is it possible that New Caledonia doesn't have those particular glyphs? The thing that doesn't make sense to me though is, last year when I made this card, it worked fine with New Caledonia... Any help is greatly appreciated!!

  • Foreign characters not displaying

    Hi... I am developing a web app that includes a database of world cities, many of which have foreign characters in their names. The MySQL database is displaying the characters correctly, but when it comes to displaying them in drop down menus, the foreign characters are displayed as blank boxes.
    The application is a J2EE Java app.
    In the index.jsp file, in the html section, I have specified various types of character sets, including the standard iso-8859-1 and utf-8, but none make a difference.
    The home page with the drop-down menus is at www.your-astrology-report.com/index.jsp. From the pull-down menus, select "International", then "Greece", then "NON-ENGLISH FIRST LETTERS" and you'll see what I mean.
    The database code that puts the city names into the drop down menu is as follows, although as a fragment, it's incomplete.
    try{
         out.print("<select name='city'>");
         out.println("<option value='0'>Select Birth Town - Check Region!</option>");
         if(letter.equals("?")){
              q="select * from "+regid+" where country='"+country+"' AND city NOT RLIKE '^[A-Z]' order by city";
         } else {
              q="select * from "+regid+" where country='"+country+"' AND city LIKE '"+letter+"%' order by city";//city begins with letter
         ResultSet rst=execute_sql_query(q);
         int count=0;
         while(rst.next()){
              out.println("<option value='"+count+"'>"+rst.getString("city")+" - "+rst.getString("subdiv")+" "+SubDiv+"</option>");
              count++;
         out.println("</select>");
    I am very new to Java.
    Is there some basic way of telling either the query and/or the out.print statement to get, preserve, and display these foreign characters correctly?
    Please keep it simple! Like I said, I'm new to all this, and most of the Google queries I've made to try to figure this out have been gobble-de-gook to me! LOL!
    Thanks,
    Fartian

    Thanks everybody for your suggestions. So far, I'm sorry to say, none of your suggestions have helped, though.
    I suspect, though, that the reply concerning character streams (PaulClapham) holds the answer. I just don't know how to implement this in my case, i.e. how to apply this to the out.println statements in the previously given code block. My experience with Java is limited. Any ideas?
    I should probably tell you how all this is structured in terms of one file calling another:
    First we have the index.jsp (www.your-astrology-report.com/index.htm), which has dynamic input fields, the one in question being this:
    <td colspan="2"><div id="cities"><select name="city"><option value="">Select City</option></select></div></td>
          <td colspan="2">Select First Letter of City First!</td>div id="cities" refers to a function in a second file, xmlhttp.jsp, which is called by the dynamic input field located just above the "cities" field.
    Here is the function:
    function handleCityU(regid_letter_country){
         document.getElementById("cities").innerHTML="Loading cities...";
         url="internal_requestU2.jsp?regid_letter_country="+regid_letter_country.value;
         var xmlhttp=myXMLHttpRequest();
         xmlhttp.open("GET",url,true);
         xmlhttp.onreadystatechange=function() {
              if(xmlhttp.readyState!=4)return;
              document.getElementById("cities").innerHTML=xmlhttp.responseText;
         xmlhttp.send(null);
    }This function passes the variable "regid_letter_country.value" to yet another file that then parses the variable, requests the required database data, and creates the out.println statements that then populate the dynamic pull-down menu that displays the cities in the original index.jsp file.
    THIS IS WHERE I NEED IT TO BE DISPLAYING INTERNATIONAL CHARACTERS. The code for this part is what I originally posted.
    Help!
    Many thanks...
    Edited by: Fartian on Mar 20, 2008 7:49 PM

  • Problem with accentuated characters in XLIFF file (no problem anymore)

    Sorry, the following turned out to be a non-problem. XLIFF editor understands accentuated characters in the translation file very well :o)
    I am trying to translate an APEX v 2.2 application from french to german.
    Generated xlf file header reads:
    <file original="f101_102_fr-ch_de.xlf" source-language="fr-ch" target-language="de" datatype="html">
    All french diacritical characters in the file are replaced by something like é. Something similar happens when one exports CSV file to Excel with Automatic CSV Encoding set to "No".
    Application main language can be swiss french (fr-ch) or french french (fr), with the same result.
    Application Language Derived From is "Use application primary language"
    Automatic CSV Encoding is set to "Yes".
    Is there a possibility to export non-english characters correctly?
    Thank you.
    Message was edited by: kortchnoi
    kortchnoi

    Well... In a way, it was my fault. I have created xliff file and looked at its contents using CodeWright text editor. Using CW's regular expressions and macros, one could process translation fairly easily.
    However, in this file foreign characters are scrambled (=> my post).
    Then, I decided to install and try XLIFF editor. The one recomended by SUN handled all diacritical characters nicely.
    So, as long as I don't try to proceed to direct translation of the xlf file, but through XLIFFF editor, I don't have to worry about french and german accents. At least, I hope so (I still have to import the german translation to be sure).
    Igor
    Message was edited by: I. Kortchnoi
    kortchnoi

  • SQL Loader and foreign characters in the data file problem

    Hello,
    I have run into an issue which I can't find an answer for. When I run SQL Loader, one of my control files is used to get file content (LOBFILE) and one of the fields in the data file has a path to that file. The control file looks like:
    LOAD DATA
    INFILE 'PLACE_HOLDER.dat'
    INTO TABLE iceberg.rpt_document_core APPEND
    FIELDS TERMINATED BY ','
    doc_core_id "iceberg.seq_rpt_document_core.nextval",
    -- created_date POSITION(1) date "yyyy-mm-dd:hh24:mi:ss",
    created_date date "yyyy-mm-dd:hh24:mi:ss",
    document_size,
    hash,
    body_format,
    is_generic_doc,
    is_legacy_doc,
    external_filename FILLER char(275) ENCLOSED by '"',
    body LOBFILE(external_filename) terminated by EOF
    A sample data file looks like:
    0,2012-10-22:10:09:35,21,BB51344DD2127002118E286A197ECD4A,text,N,N,"E:\tmp\misc_files\index_testers\foreign\شیمیایی.txt"
    0,2012-10-22:10:09:35,17,CF85BE76B1E20704180534E19D363CF8,text,N,N,"E:\tmp\misc_files\index_testers\foreign\ลอบวางระเบิด.txt"
    0,2012-10-22:10:09:35,23552,47DB382558D69F170227AA18179FD0F0,binary,N,N,"E:\tmp\misc_files\index_testers\foreign\leesburgis_á_ñ_é_í_ó_ú_¿_¡_ü_99.doc"
    0,2012-10-22:10:09:35,17,83FCA0377445B60CE422DE8994900A79,binary,N,N,"E:\tmp\misc_files\index_testers\foreign\làm thế nào bạn làm ngày hôm nay"
    The problem is that whan I run this, SQL Loader throws an error that it can't find the file. It appears that it can't interpret the foreign characters in a way that allows it to find that path. I have tried adding a CHARACTERSET (using AL32UTF8 or UTF8) value in the control file but that only has some success with Western languages, not the ones listed above. Also, there is no set of defined languages that could be found in the data file. It essentaially could be any language.
    Does anyone know if there is a way to somehow get SQL Loader to "understand" the file system paths when a folder and/or file name could be in some other langauge?
    Thanks for any thoughts - Peter

    Thanks for the reply Harry. If I try to open the file in various text editors like Wordpad, Notepad, GVIM, andTextpad, they all display the foreign characters differently. Only Notepad comes close to displaying the characters properly. I have a C# app that will read the file and display the contents and it renders it fine. If you look at the directory of files in Windows Explorer, they all are displayed properly. So it seems things like .Net and Windows have some mechanism to understand the characters in order to render them properly. Other applications, again like Wordpad, do not know how to render them properly. It would seem that whatever SQL Loader is using to "read" the data files also is not rendering the characters properly which prevents it from finding the directory path to the file. If I add "CHARACTERSET AL32UTF8" in the control file, all is fine when dealing with Western langauges (ex, German, Spanish) but not for the Eastern languages (ex. Thai, Chinese). So .... telling SQL Loader to use a characterset seems to work, but not in all cases. The AL32UTF8 is the characterset that the Oracle database was created with. I have not had any luck if I try to set the CHARACTERSET to whatever the Thai character set is, for example. There problem there though is that even if that did work, I can't target specific lagauages because the data could come from anywhere. It's like I need some sort of global "super set" characterset to use. It seems like the CHARACTERSET is the right track to follow but I am not sure, and even if it is, is there a way to handle all languages.
    Thanks - Peter

  • Why is login page (to register to use this forum) and other pages displaying foreign characters (e.g., বাংলা (বাংলাদেশ) when am using English (U.S.) versions of IE6 & Opera 10.6 to contact you (as FF4 hanging computer)?

    FF4 hanging badly, so used IE6 & Opera 10.63 to register with & access Mozilla support site. Some words on those pages displayed in a foreign language (Arabic script?? )-- example, বাংলা (বাংলাদেশ)
    Foreign characters on initial Support registration page, were in lieu of English words asking to select UserID & Password. (Page not entirely in foreign language--only parts. Request to repeat password choice, enter email, were in English).
    I registered (guessing what to enter). Went to Support page [support.mozilla.com/bn-BD/kb/ask]. Greeted by statement: "Our volunteers haven't translated this article into বাংলা (বাংলাদেশ) yet."
    No idea what language that is, or why u think I can read it. Presently logged in from U.S.

    That is Bengali ([http://www.mozilla.com/en-US/firefox/all.html]). Firefox 4 no longer has the language setting in the user agent and in your case it doesn't seem to work to detect the language.
    You can change the bn-BD in the link(s) to en-US on the Mozilla sites.

Maybe you are looking for

  • Transaction type ZGC not possible (posting to affiliated company) in ABSO

    Hi all, We have depreciation areas 01, 30, 31, 32 . dep area 30, 31, 32  inherits the values from 01. We want to post credit value to dep area 01 after doing the aqusition . Hence we created a seperate transaction type ZGC ( in aqusitions- Tcode AO73

  • Document Upload issue while clause creation

    Hi Experts, I am facing an issue where in When i try to upload a word document for creating clauses, I am successfully able to upload few documents and create clausw and some to the documents do not upload and i get an error though there is not much

  • Flash player License not readable, please correct download link

    Hi, just wanted to download the latest version of Flesh player (Version 11.9.900.152), but the license which I shall agree to solely appears in Arabian language (see: http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/legal/licenses-terms/

  • Using SATSA-CRYPTO

    I'm using some calls to the SATSA Crypto package which work fine when run with an emulator and NetBeans, but which were getting a NoClassDefFoundError when run on an actual device. It appears that none of these classes are in my Midlet's jar file. I

  • No Logro establecer comunicacion con la NI myRIO

    He instalado todos los modulos que venian en el dvd suite, el real time y el modulo de myRIO, el problema es que la myRIO es detectada aparece en el NI MAX y cuando la conecto me aparece el NI myRIO USB Monitor, al momento de darle en getting started