XML AS3 menu

Hey. I have just created a XML/AS3 menu, but i can’t make the links work.

Some dude told me to write the following at the ende of my ActionScript document:

function mouseClicked(e:Event):void {
var targetURL:String = e.target.linkTo;
var urlRequest:URLRequest = new URLRequest(targetURL);
navigateToURL(urlRequest);

(I do have an eventListener before this of cause)

My XML document looks like this at the moment:

<?xml version=“1.0” encoding=“utf-8”?>

<site>

	&lt;links&gt;
		
			
			&lt;link name="Forside"/&gt;
							
			&lt;link name="Projekt"/&gt;
		
			&lt;link name="Profil"/&gt;
		
			&lt;link name="Kontakt"/&gt;
			
			
			
&lt;/links&gt;

</site>

Anyone who can help? :smirk: