[COLOR=Navy]Hi everyone, I need a litle help on this,
I’m using a Regular.easeIn for a menu, no prob on this, but I can not access to my category will it’s still open =>
[COLOR=Red]I meen the category([/COLOR][/COLOR][SIZE=1] product_mc[/SIZE][COLOR=Navy][COLOR=Red]) inside the menu ([/COLOR][/COLOR][SIZE=1]mc_menu1[/SIZE][COLOR=Navy][COLOR=Red][SIZE=1])[/SIZE][/COLOR][/COLOR][COLOR=Navy][COLOR=Red] is not enabled…[/COLOR]
[/COLOR]
[SIZE=1]import mx.transitions.Tween;
import mx.transitions.easing.*;
function ouvert(monMenu,haut):Void{
var xsc:Tween = new Tween(monMenu, “_y”,Regular.easeIn, monMenu._y, haut, .2, true);
}
function fermer(monMenu):Void{
var xsc:Tween = new Tween(monMenu, “_y”,Regular.easeIn, monMenu._y, 410 , .2, true);
}
mc_menu1.onRollOver = function() {
haut=315
ouvert(mc_menu1,haut);
}
mc_menu1.onRollOut = function(){
fermer(mc_menu1);
} [/SIZE]
[COLOR=Red]mc_menu1.products_mc.onPress = function() {
trace(“llll”);
}[/COLOR]