numb3r
Technical User
- Apr 19, 2008
- 2
I'm a complete xml noob. I'm trying to fix a client request in a flash based app pulling in xml. All I need to do is bold some of the copy text.
I've got two instances where I need to bold text. One is using CDATA like below. All I want to do is bold out a name (ie: Jesse)
<Menu type="detail">
<text>
<head>People</head>
<logos><![CDATA[<a href="mailto:jesse@thegroup.net" target="blank">Jesse Herman (click to email) Managing Partner</a><BR><BR><a href="mailto:jamie@thegroup.net" target="blank">Jamie Shea (click to email) Managing Partner</a><BR><BR><a href="mailto:delfo@thegroup.net" target="blank">Delfo Trombetta (click to email)
Director of Operations</a><BR><BR><a href="mailto:wesley@thegroup.net" target="blank">Wesley Adams (click to email)
Director of Marketing</a>]]>]]></logos>
<email></email>
</text>
<images transition="5">
<image path="images/profile/mission/1.jpg" link_bright="100" rollover_bright="70" />
</images>
</Menu>
The other I'm trying to bold is in this one. I want o highlight the address.
<Menu type="detail">
<text>
<head>General Inquires</head>
<text>For general inqueries:<br><a href="mailto:info@theicongroup.net">info@theicongroup.net</a>
For press inquiries:<br><a href="mailtoress@theicongroup.net">press@theicongroup.net</a>
For employment inquiries:<br><a href="mailto:jobs@theicongroup.net">jobs@theicongroup.net<a>
The Icon Group 147 Spring St, No. 4 New York NY 10012</text>
<url></url>
<email></email>
</text>
<images transition="2">
<image path="images/profile/mission/1.jpg" link_bright="100" rollover_bright="70"></image>
</images>
</Menu>
I tried all day to figure it out, i'm stuck
I've got two instances where I need to bold text. One is using CDATA like below. All I want to do is bold out a name (ie: Jesse)
<Menu type="detail">
<text>
<head>People</head>
<logos><![CDATA[<a href="mailto:jesse@thegroup.net" target="blank">Jesse Herman (click to email) Managing Partner</a><BR><BR><a href="mailto:jamie@thegroup.net" target="blank">Jamie Shea (click to email) Managing Partner</a><BR><BR><a href="mailto:delfo@thegroup.net" target="blank">Delfo Trombetta (click to email)
Director of Operations</a><BR><BR><a href="mailto:wesley@thegroup.net" target="blank">Wesley Adams (click to email)
Director of Marketing</a>]]>]]></logos>
<email></email>
</text>
<images transition="5">
<image path="images/profile/mission/1.jpg" link_bright="100" rollover_bright="70" />
</images>
</Menu>
The other I'm trying to bold is in this one. I want o highlight the address.
<Menu type="detail">
<text>
<head>General Inquires</head>
<text>For general inqueries:<br><a href="mailto:info@theicongroup.net">info@theicongroup.net</a>
For press inquiries:<br><a href="mailtoress@theicongroup.net">press@theicongroup.net</a>
For employment inquiries:<br><a href="mailto:jobs@theicongroup.net">jobs@theicongroup.net<a>
The Icon Group 147 Spring St, No. 4 New York NY 10012</text>
<url></url>
<email></email>
</text>
<images transition="2">
<image path="images/profile/mission/1.jpg" link_bright="100" rollover_bright="70"></image>
</images>
</Menu>
I tried all day to figure it out, i'm stuck