- Submenus automatically scrolls - Hundreds of pre-designed templates - Search feature - add the search area in the menu and type symbols. - Special JavaScript API for changing javascript menu "on-the-fly" - 85% transparency for sub menus - Personal CSS styles for separate menu elements - Horizontal or vertical orientation - Submenus go over all page objects
Good navigation is an important step to website success. If people can't find their way around the site, they will quickly give up looking and leave, never to return. So, it's absolute vital that your website has a fast, neat, and eye-pleasing navigation. Don't allow your website visitors to get lost. Try Deluxe Menu!
Q: I am using Javascript Menu. Deluxe Menu. v1.12 How can I upgrade to v.2.0?
A:How to upgrade to v2.00 --------------------------------------------------------------- You can download the licensed engine .js files from the same link in your license message.Deluxe Menu v2.00 has new parameters and features. To upgrade to v2.00 you should do the following.
Step 1. 1.1 For Windows users a. Run Deluxe Tuner v2.0 (can be found in the trial menu package v2.0 http://deluxe-menu.com/deluxe-menu.zip). b. Open menu data file (.js file where menu parameters are placed): select File/OpenЕ c. Save the file: select File/Save, then click "No" button when the dialog box appears.
1.2 For other OS users a. Open menu data file (.js file where menu parameters are placed) in a text editor. b. Make sure that the following variables exist in the data file:
var keystrokes = 0; var dm_focus = 1; var dm_actKey = 113;
var dynamic = 0; var smHideOnClick = 1; var itemAlignTop = 'left'; var smSmartScroll = 1;
var dmAJAX = 0; var dmAJAXCount = 30; var dmRTL = 0; var dmObjectsCheck = 0; var menuBackRepeat = "repeat"; var menuHeight = ""; var transDuration2 = 200;
If one of the variables doesn't exist - add it at the beginning of the file.
c. Save the file.
Step 2. Now open HTML-page that contains Deluxe Menu.
Step 3. Replace existent tags of the menu by the following code:
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
Step 4. Save HTML-page.
Step 5. New engine v2.00 has 7 .js files. They are: - dmenu.js - dmenu4.js - dmenu_add.js - dmenu_dyn.js - dmenu_key.js - dmenu_cf.js (new v2.00) - dmenu_popup.js (new v2.00)
Replace all old .js files by the files from v2.00.
Try that.
Q: I'm fairly new to HTML and Java. I'm using your popup window html, (its great) but do notknow how to use the "ID object" function. I'm using Frontpage as my HTML editor. The only way I can figure out how to give "a line of text" or a "Graphic" and ID is to create a "Layer". That creates an (ID) in the HTML script. But I still cannot get the pop up to work when clicking the object. How is the best way to create an object ID that will all Deluxe pop-up to recognize it?
Can I have two separate pop-up within the same html page?
One last thing...Can I create a pop up that fly's out after 10 seconds, and within that fly out have a link that opens another pop up with important info in it using the iframe feature?
This sound like novice questions, but that's me!
A: See you can show the popup window when you hover, click or mouseout on some elements on yourpage. For example you've added an image in the FrontPage. Right click on this image and goto "Picture properties...", on the Appearance tab select 'Style...' and enter any text inthe ID field, for example 'open_popup'. Switch to 'Code' mode, you'll have the followingcode:
So, in the Deluxe Tuner you should enter 'open_popup' object ID in the onMouseOver,onClick or onMouseOut fields.
Actually you can assign id to any object on your page manually. Switch to 'Code' mode andadd id="open_popup" for <a>, <div>, <img> ... tags.
> Can I have two separate pop-up within the same html page?
You can add as many popups as you want.
> Can I create a popup window html that fly's out after 10 secondsCreate popup window and set openAfter=10 parameter to it. You can find this parameter in'Actions' section.
> and within> that fly out have a link that opens another pop up with important info in it using the iframe feature?Use HTML content as window content. Set winContent parameter in 'Common' section.
Add link inside the html content: <a title='Click to open sample' href='javascript:;' onclick=\"deluxePopupWindow.open(\'window1\', \'files/test.html\', \'Window2\',\'width=220,height=270,resizable,scrollbars=no,middle,right,fade-effect\', \'default\', \'iframe\')\">Click to open Popup Window with 'files/test.html'content.</a> More info about deluxePopupWindow.open() function you can find: http://deluxepopupwindow.com/window-installation-info.html
function deluxePopupWindow.open("winID", "content", "header", "param", "skin", "contentType")
Use another winID (first parameter) than you have in your data file if you don't want to close 1-st popup window or use thesame winID=win if you want to close 1-st popup.
content - will be the path to the file you want to load in your popup (files/test.html) skin - is the name of your skin (default in my example) contentType - set this parameter to iframe.
Q: I have noticed on your menus that have multiple nodes, you areallowing only the icon to be clicked and expand the tree. How would I alter the code so that when a user clicks anywhere on the tree with multiple nodes, the entire tree expands instead of the user having to be so precise in selecting the tiny icon to expand the tree.
A: You should set the following parameter to expand item on a mouseclick:
var texpandItemClick=1;
Q: Buttons are working great! Client would now like to have the rollover image stay active on the page they are on. They would like the button to stay white when you navigate to a particular page, i.e. If you click on "Press", when you get to that page, the button stays white, while all the others react in the normal manner. Is this possible?? I have seen it on other sites and it seems like it should be possible. Please let me know. I believe it could be done by creating a separate menu for each page, but that seems like a lot of work. I am sure you have a solution.
A: The menu has only two states normal and mouseover.
Try to do the following things:
- delete var pressedItem=1; parameter from your data file - set correct parameter on each page before you call data file, forexample:
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> <script type="text/javascript"> var dmWorkPath = "menudir/";</script> <script type="text/javascript" src="menudir/dmenu.js"></script> <script type="text/javascript"> var pressedItem=3;</script> ...
You can also set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
Sets a current pressed item. menuInd - index of a menu on a page, >= 0. submenuInd - index of a submenu, >= 0. itemInd - index of an item, >=0. recursion = true/false - highlight parent items.
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. You can't get this ID after you reload your page. That is why you should write your own code on PHP.
Virtual DJ es sin duda el más conocido y descargado de todos los ...
Disponemos de todo tipo de herramientas para crear loops y samples, mezclar
hasta 4 pistas .... aunque ya no es hacer mucho de dj, al menos hace de
showman, y el ... nuevo diseño con menu desplegable, se llama "Clean",
pruebalo! ;)
+ </para> <para> - For example, the script is called like this at boot: + ... + (La irq
y número de puerto son sólo ejemplos, y pueden variar entre + diferentes
sistemas). ..... menu: + Este grupo de páginas ofrece control sobre algunos de los
... + Aparecerán las siguientes opciones en un menú desplegable:
La de jabberes tiene menos retardo y es mucho menos probable que se caiga y,
gracias a badlop de jabberes, tenemos un ... Y seleccionar Sala: CPI en el menu
desplegable. .... most probably using the example above you would create it on
..... Traducción al español por Huan Manwë para phpbb-es.com
... del foro de todobanner: http://www.paginawebgratis.es/forum/viewtopic.php?t=
16013&highlight=c ... <a href="images/image-1.jpg" rel="lightbox[example]" ...
aca tambien dejo las url de los codigos, css, js,prototype,js,moo etc.. para ... un
nuevo diseño con menu desplegable, se llama "Clean", pruebalo! ;)
The following choices will appear in a dropdown: + Este grupo de páginas web ...
+ Aparecerán las siguientes opciones en un desplegable: <itemizedlist> .....
password</filename> from the next - menu and enter a password. ..... situations
or events, - for example if a monitored traffic volume is exceeded
http://moodle.org/mod/data/view.php?d=13&rid=4283 .... I have tried with ctrl-p,
but still the same with the menu in the header. ..... I have view the samples they
have listed which were nice but I didn't understand how to add my .... Hola Juan,
he instalado Custom Reports y va de maravilla, pero encontré un
http://example-new-design-clean.de.tl/ (Menú horizontal) .... También en la parte
abajo hay nuevas cosas como un menu de link rápidos :O ... http://www.
paginawebgratis.es/en/Privacy-Policy.php .... tenemos desde hace no mucho un
nuevo diseño con menu desplegable, se llama "Clean", pruebalo! ;)
Este es uno de los más populares: ... 1: Select an Example Setup ... http://www.
paginawebgratis.es/forum/viewtopic.php?t=51813&highlight= ... no mucho un
nuevo diseño con menu desplegable, se llama "Clean", pruebalo! ;)
guys how to add a drop down menu in php sites if your main links are in array the
codes below: <div id="mainmenu"> <?php $this->widget('zii.widgets.CMenu'
En esta entrada recopilaré algunas de las propiedades que no pueden
implementarse correctamente en Internet Explorer ..... #example:before { content:
"Hello\00000Aboy. ... Como usar distintos colores en un select menu con CSS ...
Como prueba añadiremos distintos colores de fondo en el desplegable
For example, an image file from your camera might be labeled: ... Now, from the
mini "drop-menu" click on a green icon to the left, .... NOTA: El icono rojo del
centro en el mini menú desplegable, junto al código de imagen,
y despues lo quiero descargar otra vez y me sale el cartel de que nesecito ... [url
= http://www.evenbalance.com/index.php?page=pbsetup.php] ... que será en
blanco, haga clic en el cuadro desplegable y encontrar .... In the upper example,
this would be: .... Computer, located in the start menu/metro screen