Ok you can set the speed by applying filters, in your functions.php:
function megamenu_flyout_hover_delay($array) {
$array[‘effect’][‘slide’][‘speed’] = “slow”;
return $array;
}
add_filter(‘megamenu_javascript_localisation’, ‘megamenu_flyout_hover_delay’, 10, 1);
Thanks for the hook ??