I have a datagrid populated with a XML file which contains URL links. I cannot
get the links to work when I click on them. Is there a simple solution? I'v
tried to use this format : <link> <a href="http://www.ghagdjagdjadg.com>
testpage</a></link> , but nothing happens and the line in the datagris is
empty. Can anyone help me?
MotionMaker - 08 Feb 2007 12:37 GMT
In XML use CDATA to store URLS and HTML
<![CDATA[<a href="http://www.ghagdjagdjadg.com>testpage</a>]]>
DizzyHVH - 08 Feb 2007 19:16 GMT
CyberSam - 08 Feb 2007 21:23 GMT
I dont suppose eith ero fyou can help me with a menu Im building, I have worked
through a few demonstrations my xml menu looks like this.
<menu>
<menuitem label="Integration Files" icon="folder" >
<menuitem label= "JPI Word dot" icon="dot"/>
</menuitem>
</menu>
the problem I'm having is I have tried to add urls but to no avail. Any help
would be appreciated.
MotionMaker - 08 Feb 2007 22:30 GMT
Something like this:
<menuitem label="Integration Files" icon="folder" >
<![CDATA[the url goes here]]>
</menuitem>
or
<menuitem label="Integration Files" icon="folder" >
<url><![CDATA[the url goes here]]></url>
</menuitem>
typeguydesign - 13 Sep 2007 20:46 GMT
Hello,
I am trying to use an XML file for external SWF links. I have the linked files
loading in a target movieclip but a new browser window opens as well each time.
I don't have a listener atached. Should I and how? Thanks in advance.