NEED HELP Adding a trademark symbol to xml flash asset

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • danka21819
    New Member
    • Sep 2008
    • 3

    NEED HELP Adding a trademark symbol to xml flash asset

    Hi, I am a front end web designer/developer and analyst...strug gling with putting an accordian flash xml menu together. I have it done except I need to add a simple trademark symbol circle with r. I am struggling with how to do this since I am not savvy in actioncript. I assume the best way is to add it is with a CDATA child node, but do not know how or whatever is the best way to get this done since am on a tight deadline. I need someone to explain step by step what I have to do to get this simple addition resolved. Attached are the links to home page and code for the xml file. The left navigation is the asset that I need to add the trademark symbol under about, about ADHERE. Thanks so much in advance!!!!!!
    index page with flash xml menu asset

    xml code:
    [code=xml]
    <?xml version="1.0" encoding="UTF-8"?>
    <accodion>


    <item name="HOME">


    </item>


    <item name="ABOUT">


    <item name= "ABOUT ADHERE<![CDATA[write]]>"></item>

    <item name="Medical Information" url="http://www.jnj.com?ref =Random">




    </item>
    <item name="About SCIOS" url="http://www.jnj.com?ref =Random">
    </item>


    </item>

    <item name="INTERACTI VE DOSING INFORMATION">


    <item name="Indicatio ns and Usage" url="http://www.jnj.com?ref =Random"></item>


    <item name="Contraind ications" url="http://www.jnj.com?ref =Random"></item>
    <item name="Warnings" url="http://www.jnj.com?ref =Random"></item>
    <item name="Dosage and Administration" url="http://www.jnj.com?ref =Random"></item>




    </item>
    <item name="RESOURCES AND TOOLS">

    <item name="NATRECOR PI" url="http://www.jnj.com?ref =Random"></item>
    <item name="About Heart Failure" url="http://www.jnj.com?ref =Random"></item>
    <item name="Stages of Heart Failure" url="http://www.jnj.com?ref =Random"></item>
    <item name="NATRECOR Dosing Information" url="http://www.jnj.com?ref =Random"></item>
    <item name="Patient Management Resources" url="http://www.jnj.com?ref =Random"></item>


    </item>
    <item name="US PRESCRIBING INFORMATION">
    </item>
    <item name="IMPORTANT SAFETY INFORMATION ref=http://www.jnj.com">

    </item>

    <item name="REGISTRAT ION ref=http://www.jnj.com">

    </item>

    </accodion>
    [/code]
    Last edited by jkmyoung; Sep 23 '08, 07:50 PM. Reason: code tags
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    NEED HELP Adding a trademark symbol to xml flash asset

    you can add ® either as unicode character or as unicode entity (&#38;#174;). (xml supports nearly all legal unicode characters)
    [CODE=xml]<item name= "ABOUT ADHERE ®"> // or
    <item name= "ABOUT ADHERE &#38;#174;">[/CODE]
    regards

    Comment

    Working...