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>
<links>
<link name="Forside"/>
<link name="Projekt"/>
<link name="Profil"/>
<link name="Kontakt"/>
</links>
</site>
Anyone who can help?