# Xml menu + up and down movement mouse + onmouseover

**URL:** https://forum.kirupa.com/t/xml-menu-up-and-down-movement-mouse-onmouseover/53709
**Category:** Uncategorized
**Created:** [June 7, 2004, 5:40am UTC](https://forum.kirupa.com/t/xml-menu-up-and-down-movement-mouse-onmouseover/53709 "2004-06-07T05:40:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sWo0p](https://avatars.discourse-cdn.com/v4/letter/s/f0a364/32.png) [@sWo0p](https://forum.kirupa.com/u/sWo0p)
#### Post date: [June 7, 2004, 5:40am UTC](https://forum.kirupa.com/t/xml-menu-up-and-down-movement-mouse-onmouseover/53709/1 "2004-06-07T05:40:12Z")

</div>

hi… im stuck here…

i made a little read xml file AS from a german tutorial… and beleef me… that was’nt easy if you dont speek german 😛

menuXml = new XML();  
menuXml.ignoreWhite = true;  
menuXml.onLoad = function() {  
menuItem = this.firstChild.childNodes;  
for (var i=0; i\<menuItem.length; i++) {  
item = \_root.attachMovie(“itemClip”, “itemClip” + i, i);  
item.\_x = 7;  
item.\_y = 17_i;  
item.itemLabel.text = menuItem_.attributes.name;  
item.myUrl = menuItem\*.attributes.url;  
item.onRelease = function() {  
getURL(this.myUrl,"\_blank");  
}  
}  
}  
menuXml.load(“MenuItems.xml”);

Problem is this… i need to make the menu listing generate on a special spot (not on 0) how can do this…

secound problem is i want to make this moven on mouse up and down controle… as i have little space to view my menu buttons…

third is problem is i like a mouseover thingy in there… now i tryed to make it around this bit

```
	item.onRelease = function() {
		getURL(this.myUrl,"_blank");

```

}

but somehow nothing seems to work…

and last but not least… all my links need to load in a container… how do i do this…? like this?

getURL(this.myUrl," **\<container instance\>**");

someone help me please…

I think its time i buy a book cos this actionscript is not easy ☹ to learn ☹
