opendelay: what param do you set to delay single menu solved
- nwilcox
- Mega Advanced
- Posts: 269
- Joined: Sat Aug 20, 2005 6:14 am
- Location: Indianapolis, IN
- Contact:
opendelay: what param do you set to delay single menu solved
hey all...
what parameter do I need to set and where so my menu subs will open with a delay.
Is it opendelay? If so where do I place it in the menu_data file and what unit of measure is the delay expecting?
Thank you!
what parameter do I need to set and where so my menu subs will open with a delay.
Is it opendelay? If so where do I place it in the menu_data file and what unit of measure is the delay expecting?
Thank you!
Last edited by nwilcox on Fri Aug 21, 2009 8:32 pm, edited 1 time in total.
- nwilcox
- Mega Advanced
- Posts: 269
- Joined: Sat Aug 20, 2005 6:14 am
- Location: Indianapolis, IN
- Contact:
UPDATE:
I updated the menu parameter as instructed and it didn't do anything. Any ideas?
http://beta.acoem.org/
the top level menu along the top now has an excessively long opendelay but nothing changed:
with(milonic=new menuname("MainNavigation")){
style=menuStyle;
alwaysvisible=1;
orientation="horizontal";
position="relative";
itemwidth="181px";
menuheight="33px";
menuwidth="842px";
opendelay=50000000000;
aI(...);
}
I updated the menu parameter as instructed and it didn't do anything. Any ideas?
http://beta.acoem.org/
the top level menu along the top now has an excessively long opendelay but nothing changed:
with(milonic=new menuname("MainNavigation")){
style=menuStyle;
alwaysvisible=1;
orientation="horizontal";
position="relative";
itemwidth="181px";
menuheight="33px";
menuwidth="842px";
opendelay=50000000000;
aI(...);
}
Hi,
If I remember correctly, the OpenDelay parameter is only for vertical menus! So, if you have a horizontal menu, your sub menus will not be affected by the delay.
Set the OpenDelay parameter in your Global menu properties and you will see the effects in the SECOND level menus (in your particular example). Basically, this parameter prevents the vertical sub-sub menus from opening too quickly as you hover down the menu options.
So if you put the open delay in the global properties, the submenu for "Continuing Education" will not be affected, but the submenu of "Conferences", WILL be affected.
I hope this clears some things up.
If I remember correctly, the OpenDelay parameter is only for vertical menus! So, if you have a horizontal menu, your sub menus will not be affected by the delay.
Set the OpenDelay parameter in your Global menu properties and you will see the effects in the SECOND level menus (in your particular example). Basically, this parameter prevents the vertical sub-sub menus from opening too quickly as you hover down the menu options.
So if you put the open delay in the global properties, the submenu for "Continuing Education" will not be affected, but the submenu of "Conferences", WILL be affected.
I hope this clears some things up.
Hi,
Vikenk is correct, the opendelay is a property of vertical menus. Since there were many requests for being able to open submenus from a horizontal menu with a delay, Milonic created a property for such isntances, horizontalMenuDelay. There is information here about it.
http://milonic.com/global_properties
I do not know if this can be applied in only one menu.
Ruth
Vikenk is correct, the opendelay is a property of vertical menus. Since there were many requests for being able to open submenus from a horizontal menu with a delay, Milonic created a property for such isntances, horizontalMenuDelay. There is information here about it.
http://milonic.com/global_properties
I do not know if this can be applied in only one menu.
Ruth
Hiya again,
That property is a true or false, I believe it takes its delay from the opendelay property. So, I'd suggest as a trial, you put in the opendelay property in the individual menu along with that horizontalMenuDelay set to true at the top. I'll play with it when I get a chance and see if that works, in the meantime I figured I'd post to you about trying that.
Ruth
That property is a true or false, I believe it takes its delay from the opendelay property. So, I'd suggest as a trial, you put in the opendelay property in the individual menu along with that horizontalMenuDelay set to true at the top. I'll play with it when I get a chance and see if that works, in the meantime I figured I'd post to you about trying that.
Ruth
- nwilcox
- Mega Advanced
- Posts: 269
- Joined: Sat Aug 20, 2005 6:14 am
- Location: Indianapolis, IN
- Contact:
does horizontialMenuDelay need an underscore in front of it like the other parameters?Ruth wrote:Hiya again,
That property is a true or false, I believe it takes its delay from the opendelay property. So, I'd suggest as a trial, you put in the opendelay property in the individual menu along with that horizontalMenuDelay set to true at the top. I'll play with it when I get a chance and see if that works, in the meantime I figured I'd post to you about trying that.
Ruth
should it be:
_horizontalMenuDelay = true;
or
horizontalMenuDelay = true;