Dynamic text don't show some characters

hi guys,
i'm with a problem.. i have a dynamic text in my flash and
it's reading vars from a txt file, but it does not read some
portuguese character as ç Ç or accents such as ã
â Ã Â...
i tried to embendding theses characters on my dynamic text,
choosing embed>all and it doesn't work...i already tried to
write them on the text box and embed>auto fill but it still
work!!
am i missing something?
help me,please!

Well the characters you mentioned should be in most regular
fonts as well. They are hardly exotic enough to warrant a complete
unicode font. I'm guessing the key something else. Of course it
depends upon what font you are using. But most fonts that come with
a computer and regular software should have those characters.
You mention you are reading the vars from a txt file. Try
this in the testing environment. Test publish your FLA and once the
text file has been read go up to the debug menu and List Variables.
Some place there should be the contents of the text file. Do the
characters show up correctly there?
If they don't, then the problem is that Flash isn't reading
the text file correctly and no font will be able to fix that. Be
sure that you are saving your text file as UTF-8. Flash doesn't
play so well with other formats and beyond the basic ASCII range in
text files.
If they do show up correctly in the List Variables. Then you
know the problem is with your fonts. As I said most fonts should
have those characters so post back if you need more help.

Similar Messages

  • HT5538 My brother and I share an iTunes account and his text messages show up on MY macbook. His texts don't show up on my phone though. how can i delete his number off my iMessage on my laptop?

    My brother and I share an iTunes account and his text messages show up on MY macbook. His texts don't show up on my phone though. how can i delete his number off my iMessage on my laptop?

    These are iMessages only.
    He activated iMessage on his iPhone with the same Apple ID that you activated iMessage with on your Mac.
    On your Mac, go to Messages preferences.
    Under the Settings selection for your Apple ID, deselect your brother's phone number for you can be reached for messages at.

  • Text don't show in email received

    When I receive email on my iCloud account, on a PC, the text don't show ?

    You can't expect Mail to support all the objects of Pages which can include anything up to charts generated from spreadsheet tables.
    Even if Mail was a superset of Pages, what would the recipients who don't have either Mail or Pages, make of it?
    Peter

  • Dynamic text, system fonts, and special characters...

    This one is boggling my mind so if someone can help, please
    do
    I've got a dynamic text area pulling text from a MySQL
    database via AMFPHP. The text includes special characters such as
    accents, umlauts, etc (multi-language site platform). Most of them
    work fine, and ALL of them work fine when I'm on a Mac client.
    However, if I use a Windows client machine in either Firefox or
    IE6, there are a couple characters that for whatever reason just
    don't seem to show up -- instead I get the [] box character.
    The only characters I've found that seem to be affected like
    this are European quote characters like ’ “ and
    ” (hex characters 146, 147, 148). I'm using the familiar
    ampersand-pound-number-semicolon escape sequence for them. And like
    I said, they all display fine on Mac/Firefox and Mac/Safari. Why
    are all my other special characters (umlauts, accents, etc) working
    fine and just these things failing? It's also worth noting that
    they look fine if I dump them out to a PHP file and pull it up in a
    browser...
    Please, if anyone can help... I've been bashing my head
    against this for the better part of the day!!

    Hi,
    did you take a look at the "gateway.php' ? There you can
    define charsets. Maybe a western europe charset will
    help you out. Since french language is using a lot more
    accents and so.
    This is what you can find in the gateway.php of amfphp. Just
    have to set the right one ;)

  • NSMutableString getCString misbehaves, does not show some characters

    Hi everyone,
    This is my first time here.
    I have written a small tool for Cocoa / MacOSX 10.5 and I am trying to save a text to a file, but some characters such as # appear as hex 0x0.
    Source: -----
    int len = [results length] * sizeof(char);
    char *buffer = malloc(len);
    [results getCString: buffer maxLength: len-1 encoding: NSWindowsCP1250StringEncoding];
    NSData *dt = [NSData dataWithBytes: buffer length: len];
    [fileManager createFileAtPath: @"/Volumes/MacBackup/results.sh" contents: dt attributes:nil];
    The # and the final 2-3 characters appear as 0x0 in a hex viewer. I have tried almost all encodings, but to no avail. Can anyone tell me how to make it work? Do I have to enter the # directly in the char buffer as ASCII char or am I missing something about the encoder?
    Btw, I am a newb at Mac programming, but I come from a solid Windows programming background, but please don't hold that against me :P.
    Message was edited by: TTDeath
    Message was edited by: TTDeath

    Hi TT, and welcome to the Dev Forum!
    TTDeath wrote:
    I have written a small tool for Cocoa / MacOSX 10.5 and I am trying to save a text to a file, but some characters such as # appear as hex 0x0.
    int len = [results length] * sizeof(char); // <-- need to add one here
    char *buffer = malloc(len);
    The NSString length method doesn't count a terminator; i.e. it's analogous to strlen(), so if you convert an ASCII C string to a NSString object, the return from [results length] will be the same as strlen(source). I'm not sure there wasn't something else going on at your end, since this length error only strips the trailing char from the source string. In any case, the following code should work for you:
    // made from MAC OS X->Command Line Utility->Foundation Tool template
    #import <Foundation/Foundation.h>
    int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    // insert code here...
    NSLog(@"Hello, World!");
    NSString *results = @"A string with # embedded
    int len = [results length] * sizeof(char) + 1; // <--
    char *buffer = malloc(len);
    BOOL bError = [results getCString: buffer
    maxLength: len encoding: NSWindowsCP1250StringEncoding];
    NSLog(@"getCString returns %d", bError);
    NSData *dt = [NSData dataWithBytes: buffer length: len];
    NSLog(@"dt=%@", dt);
    NSFileManager *fileManager = [NSFileManager defaultManager];
    // I don't recommend testing in a system directory -
    // remember to substitute your home dir name here:
    bError = [fileManager createFileAtPath: @"/Users/Ray/results.sh"
    contents: dt attributes:nil];
    NSLog(@"createFileAtPath returns %d", bError);
    [pool drain];
    return 0;
    // [Session started at 2009-12-05 16:47:41 -0800.]
    // 2009-12-05 16:47:41.045 TT[463:10b] Hello, World!
    // 2009-12-05 16:47:41.048 TT[463:10b] getCString returns 1
    // 2009-12-05 16:47:41.049 TT[463:10b] dt=<41207374 72696e67
    // 20776974 68202320 656d6265 64646564 0a00>
    // 2009-12-05 16:47:41.054 TT[463:10b] createFileAtPath returns 1
    // rays-imac:~ Ray$ cat results.sh
    // A string with # embedded
    - Ray

  • How can i set the dynamic text box to show variable value?

    In AS2, I can make a dynamic text box set a var name, when i
    use button set/change the var value, this textbox can show the
    value also.
    but In AS3, dynamic text box can't add var name. than how can
    i do it now?

    Set an instance name for the dynamic textfield. Then, to
    populate the textfield with the value of a variable, use:
    textFieldInstanceName.text = variableName

  • Dynamic Text does not show "%"

    Hi,
    I have a dynamic text box that read from external data
    source(text file), but it cannot display "%" character in flash.
    It is not in HTML format, Any advice? Thanks in advance.

    Jimmy...
    In your text file, put the characters \u0025 (backslash,
    U0025). This is the unicode equivalent. For more Unicode, see
    http://www.alanwood.net/demos/ansi.html
    Hope this helps...
    -Rex

  • When I save a Word document as a PDF file and open it, some of the boxes around the text don't show

    Hello,
    I currently have Abobe Reader X (10.1.2) on Windows 7 and I need to save a Word document currently in A3 as a PDF file to print in A4. For some documents I have no problem printing and all of the text, images, boxes, lines etc. all show up no problem, except for 2 documents where there is a problem. The document fits onto the screen perfectly.
    Please help! Thanks

    Reader is unable to create PDF files. You must be using some other product, and therefore should post your question in that product's forums.

  • When adding text in XI Pro, some characters appear and some don't.  A space is substituted for the characters that don't print.  How do I fix this?

    When using Adobe XI Pro and adding text, some numbers are not displayed.  In their place, a blank appears.  At first I thought it was a weak keyboard battery, but the same data appears fine in Word.  I've never seen this happen before.  Does anyone have any suggestions?  (Windows 7 Pro)
    Thank you!

    I don’t know the font.  (One of our other employees had experienced the problem.)  We did discover that if we saved the document and then reopened it, the text was all there.
    You may close this issue.
    Thank you!
    Joyce M Drumm
    [signature removed by host]

  • My screen don't show some colors

    Hi
    I have a weird problem with my colors. I have a mail-box,and new mails have a different color. But this color cant be showing by my screen,,,,it looks like the old mails I have already. When I go to another computer with a LCD screen the color is clear.
    I have tried any color profile and I have used colorsync to calibrate that s...! But my screen cant show this color.
    what can I do to fix this?

    I apologize for confusing the issue.  I'll try to be more precise this time.  I have 11 images in a folder that I have in "My Computer.'  That same folder was at one time imported into LR but i'm really not sure if all ot the images came in with the import. Today I added a couple of images to that folder and decided to iport the folder again into LR so tht I'd have the new images.  Before I did the import I noticed in LR that only 8 of the images were there but I figured that when I imported the folder tha remainder of the images would appear. So I do an "Import," I select the folder from the browser and click on "Import All files in Folder," and I get a "Problem With Importing Files" window which lists 8 of the images in the folder; however, the 8 that it lists are some of the images that were previoulsy imported (which makes sense), at least one of the "new" images that I added today (which should not be listed), and at least one other image that has been in the folder and should have come in with the current import. If I click the "Show in Library" button the "Already in Catalog" menu bar is highlighted and it says there are *8 images there. Those are teh same images that were in the catalog to begin with. If I go back and repeat the import but instead of clicking the "Show in Library" button I click the "Import" button the Preview window shows the 3 "missing" images. So I click "Import" (I'm actually going through this process now) i get an "Import Results" window listing the 3 images and it tells me they already exist so I click "Import." I then go back into LR ,open the catalog that they should have been imported into but they are not there.
    I appreciate your trying to help me. I hope I made it clear this time.

  • ALV Grid don't show some spaces

    Hi Everybody ,
    I have a problem to display some spaces on ALV Grid if the first of character is a space.
    For Example.
    My data is '    123'.
    ALV will show '123'.
    How to setting the ALV Grid to show '    123' (with space).
    Thanks in advance.

    Hi Tiwa,
    Please refer the link,
    ALV Grid - Displaying leading spaces
    Regards,
    Hema.
    Reward points if it is useful.

  • When use custom authetication it shows some characters on screen after logo

    Dear All,
    I have developed a application and use custom authentication schema for that. It works fine on my local pc and then I have moved it to another pc (export and then import) it works fine on that as well.
    Now I have moved it to the production server. When authentication failed it shows error message and stay in log on page. But when I provide the correct user name and password, then it shows multiple occurance of login url in page body.
    Did anyone has any idea about this.
    When authenticate success I get below output.
    Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 Location: f?
    p=ETLUI:COM_LOGIN:2888953545161107 Location: f?p=ETLUI:COM_LOGIN:2888953545161107 * ETLUI means my application alias and COM_LOGIN is my login page alias. So basically it shows link to the login screen multiple time. At this time url is looks like below
    http://prodsrv:8080/apex/wwv_flow.accept Development and Production Apex Version: 4.0.2.00.07
    Development OS: Windows 2000
    Production OS : Linux
    Thanks in advance.

    Works ok after using Apex Listener.

  • File dynamically named & want to ignor some characters

    Hi,
    My ODI sources are files dynamically named with structure SR_10-04-2011-22-54.tx.gz --> SR_dd-mm-yyyy-hh24-mi.txt.gz , i'm trying to extract thoes files with ODIunzip so i created a package and passed a variable with that structure to the ODIunzip component, but as my files are generated by a platforme in a time, and the extraction begin later , the sysdate browth form Oracle by : select to_char(sysdate,'dd-mm-yyyy-hh24-mi') from dual ; to the variable is not conform with the file structure (minuts & seconds) so i'll bring just the dd-mm-yyyy form the sysdate, and what i need is to extract the file with that date , and ignor the seconds & minuts in the name of the file.
    so Plz how can i do that?
    or is there other way to extract this file?
    thx a lot :)

    Jython tutorials..
    http://www.jython.org/docs/tutorial/indexprogress.html
    I would also look at the blogs on http://odiexperts.com/, and Oracles own tutorials around ODI

  • Latha font not showing some characters correctly

    பூ is not displaying as intended in any fonts I use.
    In the layer Name it read correctly, but in the view window it renders incorrectly.
    I'm using a PC.
    Has anyone encountered this issue before? or know how to fix it?

    AE does not support full Unicode glyph substitution. Such stuff usually has to be imported as a graphic, if you can't find a way to enforce a correct glyph e.g. with an expression or manual typing in the character code.
    Mylenium

  • Interface execution done(but showing some error in Operator on seeing execution)

    Hi Folks,
    There is the following error coming while execution of interface.
    ODI-1217: Session INT_INFext_RT_FF (20001) fails with return code 30088.
    ODI-1226: Step INT_INFext_RT_FF fails after 1 attempt(s).
    ODI-1240: Flow INT_INFext_RT_FF fails while performing a Loading operation. This flow loads target table TRG_SALES_PERSON.
    ODI-1228: Task SrcSet0 (Loading) fails on the target ORACLE connection ODI_STAGE.
    Caused By: java.sql.SQLException: ORA-30088: datetime/interval precision is out of range
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    Regards
    Rachin Gupta

    Sorry for the delay. See document 741294.1 in support system. Based on the document this is generally caused by Incorrect mapping between columns or Incorrect datatype conversion specification. To resolve:
    Verify the Column attributes of target table
    Verify the Column Converted to tab
    Verify the Converted from tab
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

Maybe you are looking for

  • Uploading a file to Server

    Hi All. I need to upload a file to CMS, just like I can do with the CMC: from cmc -> folder -> manage -> add -> local file (or something like that). But I need to do it from SDK. I did not found out exactly, but I am sure it is possible. Anyone know

  • Archives are not transorting to standby database

    Hi Experts, DB version: 10.2.0.4 OS Version: Windows 2003 Here i have one issue, unable to transfer the archives from Primary to standby database. I have no errors found in primary and also in standby database, I can able to ping both primary & stand

  • I am trying to open my itunes and it says itunes has stopped working, problem event says APPCRASH???

    ITUNES OPENS AND  THEN ERROR MESSAGE COMES UP SAYING ITUNES HAS STOPPED WORKING AND THE PREBLEM EVENT NAME SAYS APPCRASH WITH A LOAD OF OTHR INFO UPDATED QUICKTIME BUT ITS STILL THE SAME, CANT UPGRADE ANY NEW VERSIONS AS IT WONT LET ME GET THAT FAR A

  • Webdynpro in SRM SUS

    Hi experts I would like to know is is there some possibility to insert a webdynpro service in SRM SUS that is an BSP aplication? Thanks Nilson

  • 64 bit version will not complete download

    I have a new 64 bit Vaio. Download of 64 bit iTunes version stops after 8.99MB or 13% downloaded. I've tried 8-10 times, always the same. Anybody else having this problem. The older version I downloaded to try update from is not working properly. Plu