Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0

Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0, such as Nexus7, HTC One,  but in mainland China Nexus7(Android 4.4.2/AIR4.0) showed normal
AIR SDK is 4.0.0.1628.
Hope it can be fixed as soon as possible.
Here is test code:
package
          import flash.display.Sprite;
          import flash.display.StageAlign;
          import flash.display.StageScaleMode;
          import flash.text.Font;
          import flash.text.TextField;
          import flash.text.TextFieldAutoSize;
          import flash.text.TextFormat;
          public class TestFont extends Sprite
                    public function TestFont()
                              stage.scaleMode = StageScaleMode.NO_SCALE;
                              stage.align = StageAlign.TOP_LEFT;
                              var sprite:Sprite = new Sprite();
                              var value1:String = "简体中文测试";
                              var value2:String = "繁體中文測試";
                              var txt11:TextField = createTextField(null, "11 "+value1);
                              txt11.x = 10;
                              txt11.y = 10;
                              sprite.addChild(txt11);
                              var txt12:TextField = createTextField(null, "12 "+value2);
                              txt12.x = txt11.x + txt11.width;
                              txt12.y = txt11.y;
                              sprite.addChild(txt12);
                              var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                              txt21.x = 10;
                              txt21.y = txt11.y + txt11.height;
                              sprite.addChild(txt21);
                              var txt22:TextField = createTextField("MSYH","22 "+value2);
                              txt22.x = txt21.x + txt21.width;
                              txt22.y = txt21.y;
                              sprite.addChild(txt22);
                              var lastY:int = txt22.y + txt22.height;
                              var fonts:Array = Font.enumerateFonts(true);
                              var index:int = 0;
                              for each (var font1:Font in fonts)
                                        index++;
                                        var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                        txtF.x = 10;
                                        txtF.y = lastY;
                                        sprite.addChild(txtF);
                                        lastY += txtF.height;
                              addChild(sprite);
                    public function createTextField(font:String, value:String):TextField{
                              var txt:TextField = new TextField();
                              txt.autoSize = TextFieldAutoSize.LEFT;
                              var format:TextFormat = new TextFormat();
                              if(font != null){
                                        format.font = font;
                                        txt.defaultTextFormat = format;
                                        txt.setTextFormat(format);
                              txt.text = value;
                              var dformat:TextFormat = txt.defaultTextFormat;
                              if(dformat != null){
                                        txt.text = value + " |" + dformat.font;
                              if(font != null){
                                        txt.setTextFormat(format);
                              return txt;

I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
I don't understand the reason.
By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
My screenshots:
Taiwan's screenshots:

Similar Messages

  • Chinese characters are displayed as blank box on the TextField in The new HTC One with Android 4.4.2

    I use the AIR SDK is 4.0.0.1628, mobile phone is The new HTC One with Android 4.4.2 in Taiwan.
    When the application installed on the The new HTC One with Android 4.4.2, chinese characters in TextField displayed as blank.
    Hope it can be fixed as soon as possible.
    The test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • Korean characters are displayed as blank box on the TextField in Galaxy Note 3/Android 4.4/AIR 4.0

    The AIR SDK we used is 1/14/2014 Release - AIR 4.
    The device we have tested on is Samsung Galaxy Note 3/Android 4.4.
    We found that it's quite similar with Bug 3681788 which has been fixed in Beta version 4.0.0.1619.
    We checked the issue again with this beta version, and the result is Chinese characters are shown correctly, but Korean's are still not.
    Bug 3681788: The CCJ languages characters are displayed as blank box on the TextField.
    Hope it can be fixed as soon as possible.

    Japanese Characteres have same issue.
    We tested on ASUS Nexus 7/Android 4.4.2/AIR 4.0 and Japanese characters are displayed as blank box in the TextField.
    The AIR SDK we used is February 20th 2014 Release - AIR 4.
    The device we have tested on is ASUS Nexus 7/Android 4.4.2.
    AIR SDK 3.6 worked fine.
    AIR SDK 3.9 has same issue.
    We tested Chinese on ASUS Nexus 7/Android 4.4.2/AIR 4.0, and Chinese Characters are displayed as blank box in the TextField.
    I doubt that Korean Characters will also displayed as blank box.( Sorry we cannot read or write Korean so we couldn't test it)
    I am guessing GalaxyNote 3(4.4) may also have same issue with Japanese.
    Hope this helps
    Kenta

  • Newbie: Simplified Chinese characters are displayed as square boxes

    Hi,
    I am using Windows XP Simplified Chinese Version SP3, Sun JDK5.0 Update 20. I want to run Apache Ofbiz POS; however, the Chinese characters (zh) in PosUiLabels.xml are all displayed as square boxes.
    I have tested run Ofbiz in Mac OS X and the Simplified Chinese are displayed normally, and other languages can also be displayed in Windows XP.
    What should I do?
    Regards,
    Terence
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
        Licensed to the Apache Software Foundation (ASF) under one
        or more contributor license agreements.  See the NOTICE file
        distributed with this work for additional information
        regarding copyright ownership.  The ASF licenses this file
        to you under the Apache License, Version 2.0 (the
        "License"); you may not use this file except in compliance
        with the License.  You may obtain a copy of the License at
        http://www.apache.org/licenses/LICENSE-2.0
        Unless required by applicable law or agreed to in writing,
        software distributed under the License is distributed on an
        "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
        KIND, either express or implied.  See the License for the
        specific language governing permissions and limitations
        under the License.
    -->
    <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <property key="PosAdjustment">
            <value xml:lang="en">(adjustment)</value>
            <value xml:lang="es">(adjustment)</value>
            <value xml:lang="fr">(ajustement)</value>
            <value xml:lang="it">(adjustment)</value>
            <value xml:lang="ro">(adjustment)</value>
            <value xml:lang="zh">(&#35843;&#25972;)</value>
        </property>
        <property key="PosTotalReport">
            <value xml:lang="en">TOTALS REPORT</value>
            <value xml:lang="es">REPORTE TOTAL:</value>
            <value xml:lang="fr">TOTAUX</value>
            <value xml:lang="it">TOTALI STAMPA</value>
            <value xml:lang="ro">TOTAL REPORT</value>
            <value xml:lang="zh">&#21512;&#35745;&#25253;&#34920;</value>
        </property>
        <property key="PosTxId">
            <value xml:lang="en">TXID</value>
            <value xml:lang="es">Número de venta</value>
            <value xml:lang="fr">N°vente</value>
            <value xml:lang="it">IDTAX</value>
            <value xml:lang="ro">IDTAX</value>
            <value xml:lang="zh">&#20132;&#26131;&#21495;</value>
        </property>
        <property key="PosULogin">
            <value xml:lang="en">Enter User ID:</value>
            <value xml:lang="es">Ingrese su login:</value>
            <value xml:lang="fr">Entrez votre identifiant :</value>
            <value xml:lang="it">Inserire Id Utente:</value>
            <value xml:lang="ro">Introduceti Id Utilizator:</value>
            <value xml:lang="zh">&#36755;&#20837;&#29992;&#25143; ID:</value>
        </property>
        <property key="PosUPassw">
            <value xml:lang="en">Enter Password:</value>
            <value xml:lang="es">Ingrese password</value>
            <value xml:lang="fr">Entrez votre mot de passe :</value>
            <value xml:lang="it">Inserire Password:</value>
            <value xml:lang="ro">Introduceti Parola:</value>
            <value xml:lang="zh">&#36755;&#20837;&#21475;&#20196;:</value>
        </property>
        <property key="PosUserNotManager">
            <value xml:lang="en">User is not a valid manager!</value>
            <value xml:lang="es">El usuario no es administrador válido</value>
            <value xml:lang="fr">Cet utilisateur n'est pas un gérant !</value>
            <value xml:lang="it">Utente non è un manager valido!</value>
            <value xml:lang="ro">Utilizatorul nu este un manager valid!</value>
            <value xml:lang="zh">&#29992;&#25143;&#38750;&#21512;&#27861;&#31649;&#29702;&#21592;!</value>
        </property>
        <property key="PosValidating">
            <value xml:lang="en">Validating...</value>
            <value xml:lang="es">Validando...</value>
            <value xml:lang="fr">Validation...</value>
            <value xml:lang="it">Validazione...</value>
            <value xml:lang="ro">Validare...</value>
            <value xml:lang="zh">&#30830;&#35748;...</value>
        </property>
        <property key="PosVoid">
            <value xml:lang="en">Enter Order Number To Void:</value>
            <value xml:lang="es">Ingrese número de orden a anular</value>
            <value xml:lang="fr">Entrez le n° d'ordre à annuler :</value>
            <value xml:lang="it">Inserire Numero Ordine Da Svuotare:</value>
            <value xml:lang="ro">Introduceti Numarul Comenzii de Descarcat:</value>
            <value xml:lang="zh">&#36755;&#20837;&#35201;&#20316;&#24223;&#30340;&#35746;&#21333;&#21495;:</value>
        </property>
        <property key="PosWaitingFinalSales">
            <value xml:lang="en">Waiting for final sales data transmission...</value>
            <value xml:lang="es">Esperando transmisión de datos...</value>
            <value xml:lang="fr">En attente de transmission de données ...</value>
            <value xml:lang="it">In Attesa di trasmissione dei dati vendite finali...</value>
            <value xml:lang="ro">Asteptare pentru transmiterea datelor de vanzare finale...</value>
            <value xml:lang="zh">&#31561;&#24453;&#26368;&#32456;&#38144;&#21806;&#25968;&#25454;&#20256;&#36755;...</value>
        </property>
    </resource>

    When you say "displayed" I assume you mean displayed in some GUI component. In which case you should assign a font to that component which can render those characters properly.

  • Chinese characters are displaying as squares in mail subject & content

    Hi when I am sending or receiving mail which is having Chinese characters in either mail subject or contents then some Chinese characters are appearing as squares.
    This issue is only coming on single system (Window XP, outlook 2007)

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • Chinese Characters not display when PDF for marketing doc

    Hi All,
    I have typed in some Chinese Characters into a Print Layout Document.
    I am able to print these documents with the Chinese characters. But I am not able to display these Chinese Characters when I click on PDF.
    Please advise.
    Rdgs
    Jessie

    Hi Gordon,
    I have applied the various asian language service pack for the Adobe Reader.
    However, i am still not able to see the Chinese Characters in the PDF document when click on the PDF at SAP B1's Toolbar.
    Step 1 : Update a PLD with Chinese Characters (as text or from database field). Eg. AR Invoice.
    Step 2 : Set the PLD as Default Layout.
    Step 3 : At AR Invoice, call out an existing Invoice, click on Preview. Chinese Character is able to be previewed and printed.
    Convert to PLD.
    Step 4 : At AR Invoice, call out an existing Invoice, click on PDF button at the Toolbar. Preview the PDF document. No Chinese Characters are displayed.
    Is it due to Localisation? Localisation = Singapore
    Please advise.
    Regards
    Jessie

  • Chinese characters are not displayed in the Firefox bookmarks

    Chinese characters are not displayed in the Firefox bookmarks. The name looks like e.g. "??????? ???? cn.nytimes.com"
    Chinese character of the site name is displayed ok in the head of the browser window and there is no problem reading chinese web content. I use Firefox Portable 11 /English from portableapps.com in Windows XP.
    I googled and got some tips:
    1) Set your browser to recognise Chinese language internet sites.
    Windows users: Under "Tools - Options" on your browser's menu-bar add Chinese to the languages list.
    - I did this.
    2) Set your browser's "Character Set" or "Encoding" to UTF-8 (sometimes also called Universal Alphabet or Unicode).
    Encoding settings can be changed under the "View" option in your browser's menu-bar.
    - It was already set to UTF-8.
    3) Windows users: If Chinese text still does not display correctly, East Asian language support may need to be enabled.
    - This has been done when I installed Windows.
    I still don't get any Chinese fonts in the bookmark names. I can edit the bookmark name with chinese characters and then save the bookmark, it works fine. But why does not Firefox recognize the characters when saving bookmarks? Help is appreciated.

    No I didn't change anything deep beneath the hood. My problem didn't apply to the URL, but to the name of the link or bookmark header or whatever you would like to call it. (When hitting Ctrl + D there is a Name field). I only got ???????? instead of chinese characters in the name. Also for e.g. www.cntv.cn ...but maybe all China is not in the whitelist either. ;-) But anyway, this was not the real problem for me.
    Apparently I was wrong as after a reboot of the computer it worked. The solution seemed to be to add Chinese to the language list. I don't know why it was not enough to restart Firefox?
    Now I only have problems to show chinese characters in the name field of my external link manager... But I guess it is not an issue for Mozilla.

  • Fax output - Chinese characters are garbled

    Hello,
    We are using fax output for two forms ( One smartform and the othe sap script). Both the form outputs are thorugh  the same fax device. For the smartform output there are no issues and the output is as expected but for the sap script output the chinese characters are garbled. Instead of the chinese characters i get output like _____ _______>,<%,,<< etc.
    Interestingly, if i have a look at the print preview or take print out there is no issue and the characters are as expected. The issue arises only during fax.
    Can someone help pls?
    Thanks,
    Venkat

    HI friend,
    I found few same post in SDN which are related to this Chinese characters in SAP Scripts.
    Please see this link and find is the problem is same as yours if so make use of it.
    Link: [Output of Sapscript in Chinese language|Output of Sapscript in Chinese language;
    Link: [Problem displaying Chinese Characters|Problem displaying Chinese Characters in SAP script form WESCHEINVERS1;
    I think these will be helpful please revert back to me after going through the links.
    Thanks,
    Sri Hari

  • Chinese characters show up as white boxes when doing captions

    I am using Premiere Pro CC 2014 on a late 2013 MacBook Pro. I am trying to add Traditional Chinese subtitles to my video. I have imported a .dfxp file and added it to the timeline on V2 above my video track on V1. I have rendered the timeline. I have activated the closed captioning display. When I view the .dfxp file in the Captions Window, I can see the Chinese characters in the text boxes with their associated in and out points on the timeline. THE PROBLEM: IN THE PROGRAM MONITOR WINDOW, THE CHINESE CHARACTERS SHOW UP AS WHITE BOXES INSTEAD OF THE CHINESE CHARACTERS.
    I have added all of the available Chinese fonts from Adobe Typekit. I have restarted Premiere to see if adding these fonts did anything to help. It did not. My question: how can I get the Chinese characters to appear instead of the white boxes?
    Here's what it looks like:

    Thanks for the post -- I'd file a bug report on this.

  • The pdf chinese characters not display (11G  WLS_PERORTS)

    My Database:TRADITIONAL CHINESE_TAIWAN.AL32UTF8
    Environment:xp
    According to:http://docs.oracle.com/cd/E24269_01/doc.11120/e24479/pbr_pdf002.htm#BABCCEAB
    C:\Oracle\Middleware\asinst_1\config\FRComponent\frcommon\tools\COMMON\uifont.ali
    add a row
    [ PDF ]
    .....AL32UTF8 = "MSungStd-Light-Acro"
    But the pdf chinese characters not display,Why??
    http://ppt.cc/h-Tx

    kindly, make sure that you add the font path into your FORMS_PATH in regestery (if you are using windows) also put your font mapping ubder [ PDF:Subset ]
    for example:
    [ PDF:Subset ]
    times = "Barcd39.ttf"
    Arial..italic.Bold.. = "arialbi.ttf"
    Arial..italic... = "ariali.ttf"
    Arial...Bold.. = "arialbd.ttf"
    Arial = "arial.ttf"
    "Andale Duospace WT J" = "Aduoj.ttf"
    "Albany WT J"="AlbanWTJ.ttf"
    "Arabic Transparent"="artro.ttf"

  • Arabic and Chinese characters are showing ??? in PDF

    Hi
    I hava an application which calls BI publisher API to generate PDF file from rtf temlate and xml input. It is fine for English contents. But the Arabic or Chinese characters are showing ??? in PDF. If I use BI publisher Desktop to load the xml and generate pdf file, it shows correct Arabic/Chinese Characters in PDF. I also copied ALBANWTJ.ttf file to my application JAVA_HOME/jre/lib/fonts/ folder. But it still doesn't work. Anyone can help me with this?
    Thanks a lot!

    I created xdo.cfg and put it in my JAVA_HOME/jre/lib/ folder. the file is configured as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
    <properties>
    <property name="system-temp-dir">/tmp</property>
    </properties>
    <fonts>
    <font family="Default" style="normal" weight="normal">
    <truetype path="/fonts/ALBANWTJ.ttf"/>
    </font>
    </fonts>
    </config>
    But now I'm getting this error while generating pdf file:
    Adobe Reader could not open 'xxx.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    Is there anything wrong in my xdo.cfg?
    Thanks!

  • Arabic characters are displaying as question marks in forms 10g

    We have migrated our application from forms 6i to forms 10g and now in forms 10g the arabic characters are displaying as question marks while it displays correctly in the old application using forms 6i. I have already set the character set to AR8MSWIN1256 in the registry, but it didn't help. Somebody please help.

    @ Sarah, Al-Salamu Alikum We Rahmatu Allah we Barakatu,
    Sarah Habibty, why new installation ? In order to select a new suitable character set !!!
    Then creating a new instance from the db is a better alternative since it saves time,effort and another back up of his current db is exist safely if needed for any purposes in the future.
    @Amer,honestly speaking...
    Modifing ur NLS_LANG to > AMERICAN_AMERICA.AR8MSWIN1256
    Works for me in both Arabic and English data in 2 applications.This works in my pc.But it didn't works at my boss pc this can happened don't have any reason for that.!!!!
    i spent lot's of time trying to search but what i had got is that solution i suggested by a friend of mine.
    Now please could you advise me, is it better to create a new instance of database as Amatu Allah has suggested or is it better to change the character set through sql as some others have suggested? Again i suggest to select the short cut way ; to reset the character set through sql after taking a back up from ur data that is currently exist.
    then retest again doing the select and test ur data input and retrieval.
    SQL> select * from v$nls_parameters
    2 where parameter in ('NLS_CHARACTERSET','NLS_LANGUAGE');watching the output if it works that's fine saving ur time & effort .
    if not working with the correct NLS_CHARACTERSET then use my previous solution.
    Hope this helps...
    Regards,
    Amatu Allah

  • Chinese Characters not displaying

    I am creating a pdf document containing Chinese Characters. The document renders fine for me. I email it to my colleague in China and when she opens the document everything is there in the document except the Chinese Characters. The graphs (survey data), and all the English text render as expected but every bit of Chinese is stripped out. She emailed the document back to me and sure enough all the Mandarin is missing. I am positive that when I send the document by email the characters are there.
    I also posted the document on the web thinking that some email gremlin was the cause. When my colleague views this document she tells me no  Chinese Characters are visible.  Ideas appretiated. -MikeT

    Now my English pdf docs are not arriving intact (pages and fonts missing). How do I embed fonts in an existing PDF document? Is that possible? Or, did embedding have to happen at the time of creation? -MikeT

  • I have updated to 8.1 on both my ipad and iphone 5. I am missing photos...they display as blank boxes. What should I do next?

    I have updated to 8.1 on both my ipad and iphone 5. I am missing photos...they display as blank boxes. What should I do next?

    Apps downloaded on one should also appear on the other as long as the app in question runs on both iPads and iPhones.

  • Special characters / symbols  like u2018u2206u2019 are displayed as u2018#u2019 in the print pr

    While displaying print preview / taking print output using QGA3 Transaction with developed Z SAPScript form specified as one of the parameters(say for example ZARMEXP), the special characters / symbols  like u2018∆u2019 are displayed as u2018#u2019 in the print preview / print output . Of course similar problem had existed for Lambda Symbol u2018u03BBu2019., but it was resolved by using the font type Helve_I7. But for the symbol u2018∆u2019 we checked with almost all the fonts that were available in the system, but of not much use. Hence could you kindly provide us solution(s) that would resolve this issue.

    Hi,
    I hope this depends on the printer settings.
    Check whether your printer could support these characters or not!
    Thanks and Best Regards,
    Suresh

Maybe you are looking for

  • Error Occured While Creating message class 8II In SapNote 1486147

    Dear All I applied SapNote 1486147 but at the time of creating message class 8II It shows error like this Object MSAG 8II is in reserved name range for sap partner Any body help on this. Edited by: chandrap on Feb 24, 2011 2:08 PM

  • Network Programming exam papers (college exam papers)

    hello. my name is james mcfadden and i am a final year (4th year) undergraduate computing student at Letterkenny Institute of Technology. my e-mail address is [email protected] I have a question here for you. Would you have links to online versions o

  • Reading an SMB Share Without Mounting

    I'm sure hte answer to this must be incredibly simple, but when I Google, almost every link is about mounting SMB shares. I want to be able to read an SMB share on another system from the command line WITHOUT mounting the share. For example, in Windo

  • Import Only First Track

    I tried importing a CD as MP3 yesterday, and only the first track was actually imported -- the rest of the tracks appeared in the list of files created, but each was 2K in size, with no content. When I went to another computer and did the same, it wo

  • String to image field..

    Hello all,      shortly,   this is what i need:      does anyone have an idea how to show string in an image field????      now for the long story..:      I have a table, that all cells are image fields.      I send to some of them a xstring of a pic