How do I get Special character Euro symbol € to display ?

Hi,
How do I get the euro symbol € to display in Flash from
PHP file created in DW ?. It does not display it properly. I have
simplified the PHP code I have is:
<?php
$msgtoflash = "This is the Euro Symbol &#8364";
print ("&Databaseinfo=$msgtoflash");
?>
The &#8364 is a special character code for HTML.
If I use the $ or £ symbols it works perfectly but not
€ ?
Thanks,
Paul

maith wrote:
> Im using Actionscript2. I had placed a query in Flash in
"General
> Discussions", before I came on the Dreamweaver Forum,
but got no reply.
The way to get the euro symbol to display in Flash is to use
XML. I have
tested this, and it works:
euro.php
<?php
header('Content-type: text/xml');
echo '<root>
<elem>This is the euro symbol:
&#8364;</elem>
</root>';
?>
ActionScript 2.0 to display the value of <elem> in a
dynamic text field
called myText:
var myXML:XML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = handleLoad;
myXML.load('
http://localhost/test/euro.php');
function handleLoad(success) {
if (success) {
var theRoot:XMLNode = this.firstChild;
myText.text = theRoot.firstChild.firstChild.nodeValue;
} else {
myText.text = 'Not working :(';
Handling XML in ActionScript 2.0 is like poking needles in
your eyes,
but it's the only way I have been able to get the euro symbol
from an
external source into a Flash movie.
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of
ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/

Similar Messages

  • How can I get rid of Euro symbol in text?

    Euro symbol show up in front of Copyright symbol when I test it in Internet Explorer but doesn't when I check it in another browser.
    How can I get rid of it?
    Thank you.

    Does it show up in the code?
    If not it's probably a charset in the page encoding that's being misinterpreted by the browser, or a "web-unfriendly" font...
    I try to stick to UTF-8 and avoid any font that isn't in the default list in DW.
    If you have a link to the page online it would help a lot more though. Without that everything I just posted is a guess.

  • How to escape the special character ' (ascii 39) in a select query?

    Hi,
    does anybody know how to escape the special character ' (ascii 39) in a select query?
    I've tried a lot of ways but nothing seems to work, for example I try to get all
    names in table foo where coloumn name contains a '-sign (ascii 39)
    select name from foo where name like '%\'%';
    select name from foo where name like '%{'}%';
    select name from atg_horse where name like '%chr(39)%'
    ... but neither works, I end up with a ORA-01756: quoted string not properly terminated
    I would apriciate any help
    /Carl-Michael

    friends
    thanks for ur time and effort that u gave to reply to my problem.
    But my main problem is that when my application (VC++ 7) fires the following query in the oracle database , it does not return any rows.
    SELECT count(*) FROM ORGANISATION WHERE UPPER(ORGANISATION.ORGANISATIONNAME)
    LIKE N'&#946;%' ORDER BY ORGANISATION.ORGANISATIONNAME
    the above question in the previous thread was just to check on sql plus as it's editor does not support unicode characters.

  • How to use the special character pallet in Maverics with Illustrator

    How to use the special character pallet in Mavericks with Illustrator - I follow the help instructions, but the pasted in object looks like a rectangle with an X, I have done this before, in earlier versions of AI, but cannot make it work in CS6.
    In fact, I can open an old AI file (CS4), copy the character (a graphic symbol, also taken from the special character set), paste it in, and it works, but can't do this with a new one, from the drop down, Show Character Viewer, in the Mavericks menu bar.

    The box with an X indicates the font you are using does not have the glyph you are trying to paste. Try a different font.

  • How to escape the special character ' (ascii 39) in a query

    Hi,
    does anybody know how to escape the special character ' (ascii 39) in a select query?
    I've tried a lot of ways but nothing seems to work, for example I try to get all
    names in table foo where coloumn name contains a '-sign (ascii 39)
    select name from foo where name like '%\'%';
    select name from foo where name like '%{'}%';
    select name from atg_horse where name like '%chr(39)%'
    ... but neither works, I end up with a ORA-01756: quoted string not properly terminated
    I would apriciate any help
    /Carl-Michael

    Use two single quotes inside your literals to represent one single quote.
    For example, this would find my name:
    SELECT *
      FROM emp
    WHERE name = 'Michael O''Neill';
    Michael O'Neill
    (acutely aware of the apostrophe issues in the world)

  • How to add A Special Character '&' in CGNode.addData()

    Hi,
    I'm using XML class Generator to create a XML file. When I used CGNode.addData and the data contains "&" character, I got the following error:
    oracle.xml.classgen.InvalidContentException: illegal character '&' in CharData
    at oracle.xml.classgen.CGNode.addData(CGNode.java, Compiled code)
    Does anybody know how to insert this special character in XML Class Generator?
    Thank you in advance!
    weiwei

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by weiwei:
    Hi,
    I'm using XML class Generator to create a XML file. When I used CGNode.addData and the data contains "&" character, I got the following error:
    oracle.xml.classgen.InvalidContentException: illegal character '&' in CharData
    at oracle.xml.classgen.CGNode.addData(CGNode.java, Compiled code)
    Does anybody know how to insert this special character in XML Class Generator?
    Thank you in advance!
    weiwei<HR></BLOCKQUOTE>
    I had the same problem here and the only solution I found, was to turn of the validation using the setValidationMode member function of ClassGenerator.
    Regards,
    Reinhard Schuerer

  • Getting special character while saving adobe form from portal

    Hi All,
    I am getting Special character while saving adobe form. I am using webdynpro java application, in which I am using download file UI element.We are facing this issue after support packs were implemented in staging system.
    Kindly advise.
    Regards
    Shashwat

    Hi,
    We have ABAP system as backend system seperately and Single sign on is configured.
    when we access the portal with domain name line http://hostname.domain/52000/irj/portal, we are able to access the adobe form which is develope on abap system without any issue.
    but our issue started when we are trying to access portal only with hostname as http://hostname:52000/irj/portal
    we are able to login to portal but when we are trying to open the adobe form we are getting error
    No switch to HTTPS occurred, so it is not secure to send a password
    Since you have configured SSL, I assume that this configuration is done with fully qualified hotsname. Hence the certificate is generated based on this hostname.
    Now when you access your portal without typing fully qualified hostname, system is unable to locate a relevant certificate. Hence it lands up with a message "No switch to HTTPS occurred, so it is not secure to send a password"
    Hope this answers your query
    Regards,
    Deepak Kori

  • Help!, How do you enter British Pound/Euro symbols?

    Hi,
    I bought an american version powerbook because as an fairly apple newbie turn intermediate level mac user each key was well spelt out in words than the rather symbolic based british keyboard layout. Now funny question is does anyone know how to enter British pound and Euro symbols on an american version powerbook, cos i dont want to be copying and pasting

    £ is Option + 3
    € is Shift + Option + 2
    Also, consult Keyboard Viewer for the key commands for other commonly used characters. You can find Keyboard Viewer by clicking on the flag icon in the menu bar. To activate this menu bar item, go to System Preferences > International > Input Menu and check the box, 'Show input menu in menu bar,'
    Tuttle

  • Euro symbol not displayed/stored correctly when Application Server on AIX

    Hi,
    Up till now we have an BC4J/ServiceFile/UIX application (generated with JHeadstart)running on Windows OS (Application Server and Database).
    The customer has decided to move the Application Server (10g) to an AIX machine.
    When testing the application we find:
    1) Euro symbol (€) is displayed en stored correctly when stored in varchar2 db-columns
    2) The Euro symbol is not stored correctly when stored within a CLOB db-column AND when the AS runs on an AIX.
    When the Application Server runs on a Windows-platform the euro symbol is displayed and stored correctly.
    Our first guess was some NLS_LANG configuration problems on the AIX-machine. We tried however to set the NLS-LANG to "DUTCH_THE NETHERLANDS.WE8MSWIN1252". This had no visible effect.
    Are there other (if any) NLS-settings which influence the way the CLOB-columns are dealt with?
    When connecting to the same database from a Windows-Application Server no problems occur, thus showing that the problem is AS/OS specific.....
    Our guess is that is related to BC4J and how BC4J communicates with the database.
    Is this problem a known bug/issue?
    Any ideas how to solve this problem?
    We are using JDeveloper 9.0.3.1 (build 1107), Business Components Version is 9.0.3.10.62
    Thanks,
    Anthonie

    Sorry, I'm having difficulty understanding what's happening here. Let me see if I get it.
    You have an application that stores the euro symbol in a CLOB. When the server that handles this application is on AIX, the euro is not properly displayed in the client. When the server is on Windows, it displays properly.
    Is that the issue? If so, it could be a number of things, but it's probably related to the character set differences between the two database servers.
    Have you been able to reproduce this without using Business Components?
    -SteveA

  • Topic area: Apple Mail.  Question:  How do I get the message preview window to display to the right of my list of email messages?

    Topic area: Apple Mail.  Question:  How do I get the message preview window to display to the right of my list of email messages? i.e. to preview whatever message is currently highlighted in the center window list of messages?

    At present there is no preference option available to move the preview
    pane to right side of the mail window.
    Best.

  • HT2434 How do I get my custom linux software to display at 1280x1024 on my iMac under Parallels? and stay that way when I reboot?

    How do I get my custom linux software to display at 1280x1024 on my iMac under Parallels? and stay that way when I reboot?

    Interesting. Comes with? you didn't have either before? Paragon is commercial and is now v. 10.0, they were the only one keeping updated and was supporting 10.7.4. I would not enable more than one.
    For writing to HFS Paragon has theirs but probably give the nod to MacDrive there.
    I never do an upgrade to a new OS over the old system, I backup (clone) and format the drive with the new OS and do the install so whatever is there I know is clean and also to keep from carrying around leftovers from years and systems past.
    I would assme Paragon is limited. Try their site and knowledge base?
    MacDrive
    http://www.mediafour.com/updates/macdrive
    Paragon HFS
    http://www.paragon-software.com/home/hfs-windows/
    Paragon NTFS
    http://www.macupdate.com/app/mac/26288/ntfs-for-mac-os-x
    http://www.paragon-software.com/home/ntfs-mac/

  • How can I get the date and time and display it on the report main page?

    Gurus,
    How can I get the date and time and display it on the report main page?
    Thanks!

    Hello,
    You can create a Formula Colum returning a date :
    function CF_1Formula return Date is
    begin
    RETURN(SYSDATE);
    end;
    Put a Field in the Layout having this formula column as source .
    Regards

  • My number 2 key shortcut is stuck on € when pressing alt 2. How do i get back the 'at' symbol ?

    My number 2 key shortcut is stuck on the euro sign when i try and use thr 'at' symbol on twitter etc. How do i get the 'at' symbol back again on key 2? Help really appreciated new macbook user here

    Settings---> Messages---> Send & Receive---> Adjust information as needed.
    KOT

  • How to know the Special character?

    I am using Release 10.2.0.1.0 version of oracle. I am getting a special character, but i suspect it as any other language caharacter.
    Its appearing in my 'TOAD editor/Sql prompt editor' as 'A?'. but when i am selecting it from the table using below query, its giving 'No rows Returned'.
    select id from tab1 where id like 'A%';
    Please let me know, how can i be able to see the exact character or which editor will enable me to see the character?
    I think sql developer GUI might be able to show the same but i dont have sql developer with me.

    930254 wrote:
    I am using Release 10.2.0.1.0 version of oracle. I am getting a special character, but i suspect it as any other language caharacter.
    Its appearing in my 'TOAD editor/Sql prompt editor' as 'A?'. but when i am selecting it from the table using below query, its giving 'No rows Returned'.
    select id from tab1 where id like 'A%';
    Please let me know, how can i be able to see the exact character or which editor will enable me to see the character?
    I think sql developer GUI might be able to show the same but i dont have sql developer with me.select ASCIISTR(id) from tab1 where id like 'A%';

  • Special characters Euro symbol €

    Hi,
    I have a dynamic text box on stage. It loads text from a php
    file, created in Macromedia. However, it will not load the Euro
    symbol €. Ihave tried the special HTML character &#8364
    in Macromedia but it does not convert it to the Euro Symbol. It
    does not work either, if I put in the € symbol, but will work
    for $ or £ symbols.
    The php code i have is :
    <? php>
    $msg = "This is the Euro symbol &#8364";
    print ("&hotelDatabaseinfo=$msg");
    <?>
    What should I do ?

    I will check the TextFormat, if I can find a tutorial.
    Now i have as code:
    var loaderSoortjesNl:URLLoader = new URLLoader(new URLRequest("soortjes_nl.txt"));
    loaderSoortjesNl.addEventListener(Event.COMPLETE, completeHandlerSoortjesNl);
    function completeHandlerSoortjesNl(event:Event):void {
        var loadedText:URLLoader = URLLoader(event.target);
        textSoortjesNl.htmlText = loadedText.data;
    soortjes_nl.txt have the following inside.
    <u>test</u>
    test

    <u>€</u>
    at the moment it will output in:
    test
    test


    instead of:
    test
    test


    Because it's a menu with some prices in it, the euro symbol (i use ctrl+alt+5) is for me real important.

Maybe you are looking for

  • Powershell will not update-help

    Update-help doesn't work. Update-help -sourcepath "D:\update help" also doesn't work. I manually downloaded the files and put them in that folder since the live update fails, but even that won't work. Pasting error message: "PS C:\WINDOWS\system32> U

  • Trying to uninstall plugin on mac os x lion

    Ok, I'm trying to uninstall a trial plugin in premiere cs6. I have gone to library\application support\adobe\common but a plugin folder does not exist. I also checked in the app, view contents, and found a plugin folder but I don't see the plugin in

  • HT4836 duplicate finder context menu items Mountain Lion

    I paid money to upgrade to 10.8.2 Is it a bug-or-feature? I have upgraded all my apps I purchased though iTunes. I get 2-Opera, 2-Pages, 3-TextWrangler, 3-xCode, items in my Finder Context menu. I need to Remove (maybe add items later). Where is the

  • Is there any userexit/badi/bapi to react miro on enter ?

    hello i tryed to find exit to check company code in miro , i tryed badi INVOICE_UPDATE not working , oss buttom line Note 392342 "'MRM_BADI_INVOICE_CHECK'. Contact the remote consulting for this" userexit LMR1M001 to LMR1M006 and MRMH0001 to MRMN0001

  • IPhone 4 and Exchange Sever 2010 Problems

    All, I'm running an iPhone 4, iPad, and Macbook Pro (10.6.4) to grab mail from our recently upgraded Exchange 2010 Mail Server. The server was moved from Exchange 2003 just this past weekend. Up until this weekend, I was able to access the exchange s