- Top items and submenus have a shadow - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time. - Relative/Absolute menu position - Horizontal or vertical orientation - Several menus on one page - Visible over select boxes, iframes, pdf, flash, Java applets. - Personal CSS styles for separate menu elements - Submenus dropdown on mouseover
Setup menu parameters manually or using De Luxe Tuner. Then add some rows of a code within html page code and your menu is ready!
Use special Java Script methods for: Dynamic changing of items (link, text, icons, arrows and even individual style!). Addition/removing of items or submenus. Disabling and enabling menu items. Getting the info on every submenu, menu, and items. Changing appearance of items. Other coding tricks.
Cross-frame mode lets you to construct full-featured dhtml menus on the pages with frames. But for all that frame set it's not necessary to insert any additional code into all the pages - just specify several extra menu parameters.
Ability to handle the menu from the keyboard via keystrokes.
Q: I am using the deluxe menu 2 and I've found that on IE7 there is a Page Zoom function, when you use this the text in the drop down menu appears blurred, but the text on the top level remains clear? Have you seen this?
Use IE7 and zoom to 150%. Is there anything I can do to prevent this effect?
A: Try not to use effects in this case:
var transition=0;
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: How can I change supported language in sliding navigation bar? I want writesome in czech with specific symbols ..
A:You should turn on "Tools/Use utf8 encode" property. In that case your data file will be saved in UTF-8 encode. So, youshould set UTF-8 encode on your page too
If you don't want to use UTF-8 encode on your page you should turn off "Tools/Use utf8 encode" property, save your data file and manually change your letters in any text editor.
Q: A couple days ago I purchased the multi-website license of Deluxe Menu/Tree/Tabs/Popup Window/Calendar for US$149.00
I am having a very hard time getting the popup window to do just a basic function.
All I want is to have a link that I click on the page and the dhtml menu windows pop up.
As it is, the page automatically opens the popup window on loading.
I'm not a Javascript programmer which is why I purchased your product as it seemed I could pick a couple basic values in the GUI and it would create the script and code for me.
It would be REALLY handy if you had a couple of examples of how to create the following:
- Open the popup window upon the page loading
- Open the popup window when the user clicks a link
- Open the popup window when the user mouses over a link
- Close the popup window when the user mouses out
The help section doesn't even provide a menu item for the popup window.
Finding support for it on your site is difficult and what I can find is better suited for someone with Javascript knowledge.
Is there any way you can provide me the code to do this?
Thanks very much for your time and assistance.
A: We have such example on our website: > - Open the popup dhtml menu windows upon the page loading To open the popup window upon the page loading you should set thefollowing parameter: openAfter=0 deluxePopupWindow.attachToEvent(win,'openAfter=0,,,,,') You can find this parameter in Deluxe Tuner. See on-load.zip example. > - Open the popup window when the user clicks a link Create the popup window in Deluxe Tuner and save it as html. UseonClick event for a link.
See how you should write your link: <a class="sampleLink" title="Click to open sample" href="javascript:;" onclick="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>this link</b></a> opens a medium-sized dhtml floating window. where (see on-click.js file) 'win' - is winID '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN:center\'> <B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>' - content of your popup window 'Safari Style' - window title 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes' - parameters of the popup window'windows_safari' - window skin
Notice that you shouldn't set openAfter parameter in on-click.jsfile: deluxePopupWindow.attachToEvent(win,',,,,,')
> - Open the popup window when the user mouses over a link > - Close the popup window when the user mouses out
You should create such popup in the same way as in the previous point,but use onMouseOver/onMouseOut events.
<a class="sampleLink" title="Click to open sample" href="javascript:;" onMouseOver="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>this link</b></a> opens a medium-sized dhtml floating window.
<a class="sampleLink" title="Click to open sample" href="javascript:;" onMouseOut="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,bottom,left,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>Open popup window</b></a>
right-clicking external edit/page won't show the customize menu anymore ... Ext. editor is still not working. No errors, the same warnings as posted above. .... I now moved every thing out to the toolbar which i hide. ... Mousing over a button would reveal its purpose in the tooltip instead of
SmoothWheel 0.44.7.20050605 - Scrolls the document smoothly when scrolling the mouse wheel ... Tabbrowser Preferences 1.2.8.8 - Enhances control over some aspects of tabbed browsing. ... User Agent Switcher 0.6.8 - Adds a menu and a toolbar button to switch .... Gmail Space 0.1: http://www.rjonna.com/ext/gspace. php
only a few changes :) and added Pxl_Buzzards mouseover extra. ... go into the context menu -not bothered.. or on the same toolbar below like:: ..... 1. i have 160 styles posted and have been using this ext. and site from
Considering I have ported SDL over to the iPhone for my quick OpenTTD port, .... That could be solved by adapting the whole menu system to smaller .... such as laying down tracks, it activates due to the mouse up event. .... rotate to portrait mode, which leaves only 320px width for the toolbar
Methods of loading a listview and treeview with over 1000 items without delay/ flicker,. ... How to save font change by ctrl+mouse wheel in RichTextBox ... not UI thread · STAThread in Backgroundworker · Creating Toolbar from MenuStrip · List<T> ... in Debugging styles in ext. css not on screen, or browser only des
The options helped wake up the third mouse button, instead of ... I brought my kmap over from an earlier tc system (see below). You ... Fn 8 toggles ext. display on and off, both at Grub 2.0 and at TinyCore logo boot .... the keys, when viewing the grub menu. It doesn't always work
the mouse over one doesn't work unless you click on it - and there doesn't seem to be a return false on it so it ..... Enable Google Bar mapEnableGoogleBar: false ..... I've been checking out the competition, both ExtJS and Dojo menu
You can use your middle mouse button to close the tab. ... no looking and finding the one tab out of a dozen and then move mouse over to that small area to double click. ... Dragontatt: Did you try out my suggestions for your comment on my ext. page? ... Quick search bar like Firefox/IE. 5 replies
Using CSS Class for Mouse Rollover text · Print the main page after confirmation page is closed .... Based on first dropdown menu all the remaining fields should be populated ... ExtJs: Help on 'hidden' is null or not an object occuring in Ext Grid. ..... Open new window first time and over write next onwards
Sep 1, 2010 ... Changed: Moved the running of the Toolbar checker program ... Fixed: Bug in the DLE window where if you bring up the context menu on a certain item and then delete it, ... Fixed: Mouse wheel scrolling bug in the Explorer style combobox .... Thanks, just downloaded it and installed over top the old
Apr 2, 2005 ... Old: "Copy of Filename.ext, Copy of (2) Filnename.ext". New: "Filename.1.ext, Filename.2.ext". ... +: Added 'Lock Toolbar' option to the main-toolbar's popup menu. ..... NZB import speed has been optimized over beta 16. ..... while other file types can be launched with a single mouse
I've been checking out the competition, both ExtJS and Dojo menu ... Must use mouse. Ouch. So would our menu be more than just a UI version of suckerfish? I hope so. - Richard .... At the moment, I've been writing a toolbar plugin that may go with .... I especially like how it can display over-top of form elements
+ When Ext column is separated, names with only one dot which is at the beginning (e.g. ".htaccess" or ".cvsignore") are ... Alt+Mouse Wheel entered the main window window-menu (not visible). ... no longer shown on skipping file spanned over multiple volumes. ... + Added Recompare to toolbar
... last.fm nodes (mouse over the controls to see what they do) to suite ... added QuickQueue from last.fm menu, selected tracks will be queried and ... Partially fixed enable dj mode from option sheet (still works from the toolbar menu)' ..... http://www.mediamonkey.com/wiki/index.p ... ext=Search
Feb 11, 2008 ... How would you suggest to implement a toolbar with further ... We're using the Ext JS library for the GUI components and dojox for implementing the drawing editor. ... by clicking e.g. on the text or path element with the mouse. ..... Dojox right now that hasn't been touched in over a year and just
Mouse over it and you get a textual or graphical preview of the pages within. ..... with similar ext which stores groups publicly in an online service) ... I had a little square button on my normal chrome toolbar that would .... Left- clicking the group creates a menu that drops down showing the
Apr 19, 2007 ... The button does expose mouseover/mouseout events though which you can use to show the menu. Jack Slocum Ext JS - Core Development Team
Aug 29, 2009 ... press ctrl+b in the new tab page and the bookmark toolbar ... Or maybe a " bookmarks" submenu in the page's context menu, ... It stays hidden until you mouse over the address bar and then it ... auto hide or shrink entire browser panel (inc. nav buttons, addr bar, ext buttons and the bookmark bar)
Apr 1, 2007 ... I was almost there... added mouseover and mouseout to the div, and mouseover/ mouseout to the toolbar. The problem is that elements inside the toolbar makes it flick, ... Sencha - Mobile JavaScript - Ext JS, Ext GWT and Sencha Touch ... You may also want to hook the hide event of the menu to hide the