Problem with submenu

Hi

I have a menu called ‘mENU’ but 2 items called ‘iTEM2’ and ‘iTEM3’ in this menu have a submenu called ‘iTEM2sUB’ (for ‘iTEM2’) and ‘iTEM3sUB’ (for ‘iTEM3’)
I want the submenu’s appear on roll over of the right item but it won’t work :m:

this is the code i use:

_root.mENU.iTEM2.onRollOver = function() {
	this.gotoAndPlay('on'); // the animation of 'iTEM2'
	_root.mENU.iTEM2sUb.gotoAndStop('on'); // to activate 'iTEM2sUB'
}

_root.mENU.iTEM3.onRollOver = function() {
	this.gotoAndPlay('on'); // the animation of iTEM3
	_root.mENU.iTEM3sUb.gotoAndStop('on'); // to activate 'iTEM3sUB'
}

sorry
I’ve just solved my problem I wrote somewhere a wrong lettre :slight_smile: