Xml menu + up and down movement mouse + onmouseover

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 :stuck_out_tongue:

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 = 17i;
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 :frowning: to learn :frowning: