- Text aligned to left - Personal CSS styles for separate menu elements - Items with icons - Keyboard navigation - press Ctrl+F2 to enter the top menu - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time. - Transition #14 - "fade out" effect - Submenus dropdown on mouseover - UL/LI items structure
Submenus can be shown in 4 ways: - From from left to right + upwards and also left to right. - From right to left and also from right to left + upwards (e.g. for right-to-left languages).
Use images for icons, backgrounds of submenus and items. Using images you can create menus entirely based on graphics.
Create both horizontal and vertical menus and submenus with any amount of menus on one page.
Insert any HTML code inside the menu item - be it a form or a picture, a flash-object or a text. This ability allows you to create various menus of any complexity.
Q: How can I upgrade to Deluxe Menu v2.0? Now I'm using v1.14.
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:
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: Hi, I am looking at your Deluxe Menu package. It looks very nice, but I cannot find any kind of manual for how to use it. There's some online documentation on the Tuner, but (for example) I can't find anything that documents the dm_popup window open options. I find some sample code I can copy that has the call
return dm_popup(0, 1000, event)
1. So, what do these parameters mean? 2. It takes a long time for the menu to go away if you don't click anything. From tracing through the obfuscated javascript with firebug, it looks like the second parameter sets a timeout to make the menu go away. But when I change the "1000" to "1", the menu does not appear to behave any differently. 3. If I want to have more than one of these menus show up on the page, how would I do that? 4. I have it set up to show the popup when you right-click a page element. However, the menu items only appear to fire if you then left-click them. This is confusing to the user: I'd like to have the menu items also fire when you right-click them for consistency. How would I configure this?
These are the kinds of questions I would like to have answers to, but I cannot find any relevant documentation. Do I have lots of tracing through javascript ahead of me? If I have just missed the relevant documentation, please tell me where to find it. I would love to use your product, but if I have to spend all my time tracing javascript it's not a big win for me. Thanks for your assistance.
2) You should adjust the second parameter in dm_popup() function:dm_popup(0, 500, event);
3) See the first parameter in the dm_popup() function is menuInd, soif you want to create several popup menus you should create severaldata file and call them on your page, for example: <script type="text/javascript" language="JavaScript1.2" src="menu-top.js"></script> // ID - 0 //standard menu (doesn't use popup feature) <script type="text/javascript" language="JavaScript1.2" src="source_pop.js"></script> // ID - 1 <script type="text/javascript" language="JavaScript1.2" src="source_pop1.js"></script> // ID - 2 <script type="text/javascript" language="JavaScript1.2" src="source_pop2.js"></script> // ID - 3 <script type="text/javascript" language="JavaScript1.2" src="source_pop3.js"></script> // ID - 4
and so on.
See how you should call dm_popup() functions:
<img src="../../../../fileadmin/img/flag_de.gif" width="50" onMouseOver="return dm_popup(1, 2000, event);" style="cursor: pointer;"> // 1 - is ID of the second menu ....
<img src="../../../../fileadmin/img/flag_fr.gif" width="50" onMouseOver="return dm_popup(2, 2000, event);" style="cursor: pointer;"> // 2 - is ID of the third menu // 3 - is ID of the fourth menu ... and so on.
4) Unfortunately it is not possible now.
Unfortunately we don't have additional documentation yet. But you canfind all need info on our website. Try to use search field on ourwebsite.
> I have another question. My popup menus are not fixed, they are dynamic in > the sense that I have multiple rows showing up on the page and each row > needs to have custom information passed. Each row has one or more database > identifiers associated with it, and the ajax calls that will get fired > when I choose a menu item such as "Edit" or "Add Child" will need those > database identifiers. How would I pass this information?
You can dynamically generate the menu structure. For example movemenuItems into your phph page (or embed in a Smarty Template) insideSCRIPT tag:
2. You should install the menu on your page. You can click, for example, File/Export to HTML.
So, you'll have folder with all engine files and images ("deluxe-menu.files/" folder by default), deluxe-menu.html file and data-deluxe-menu.js file with all menu parameters.
Open deluxe-menu.html file in any text editor and copy several rows of code into your page (for example index.html page of your website).
Copy and paste several rows into your html page (index.html).
<head> ... <!-- Deluxe Menu --> <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> <script type="text/javascript"> var WorkPath="deluxe-menu.files/";</script> <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script> ... </head>
You should also copy "deluxe-menu.files/" folder with all engine files dmenu.js dmenu_add.js dmenu_dyn.js dmenu_key.js dmenu_cf.js dmenu_popup.js dmenu_ajax.js dmenu_search.js and data-deluxe-menu.js file into the same folder with your index.html page.
I'm setting up 5 i-phones to control our in-ear monitor mix. ... I know it sounds like a stupid question. So when i move a fader in live .... Why it tries to deal with Contextual menu items, I don't know. .... Look at the "Default Host " pop-up button, it should be set on the iPhone corresponding to
Nov 27, 2010 ... Keep your controller close at hand to skip any menus that pop up (although we have managed to almost completely eliminate that problem)
Essentially, it should pop up a dialog so the user can Save/Open the file, ... We'd like the prompt as these are mobile phone wallpapers. ... in iPhone4/Safari a menu will pop up allowing them to save the image ... i.e. add PHP code to check user agent string to detect iPhone, send img tag instead
Jul 17, 2010 ... so under FrameWorks (in xcode) right or control click on UIKit. ... Now hit Command B and it looks like we have 0 errors. ... drag it to you button then a pop up menu should appear touch up inside is where when you
To celebrate our launch of Galactic FX, we'd like to give away 10 promo codes for all ... Experimentation can be fun, but the controls are confusing. ... icon on the top right of the screen when within the menu. ... I think it might be better to have the help information pop up if you hold your finger on an item
Like the YP-T10 that I reviewed previously, the P2 comes in a hard plastic box with a ... direct access to music controls, DNSE and the pop-up playback menu. ... Also via the pop-up menu-a interesting horizontal stroke feature for .... iPhone/iOS, |---- Windows Phone, |---- Media (iPod/MP3) Players
I'm not able to get the scripts up to their standards for including ... If I use the XBOX DVD IR, the up and down arrow both take me to the pop-up menu. .... On your main menu, all your items have a name, and to the right of each ... Just like on iPhone or iPad. And this is Apple-ish skin after all
That remote is a Stock icon from yellowicon.com and the iPhone looks like Dustin's. .... Once you see a menu pop-up click "Get Info. ... type of pictures can I use to replace the folders icons, like for example do I use png of jpg or etc. ... Anyone have a nice apple remote control icon? Offline
If I use the Pop up Menu and Add to Main Screen it says Failed to add shortcut ... I just went to the dune homepage and I don't really like the whole ... I also tried the free iPhone/iPad remote control advertised on the
Or a pop-up menu with the possible options? ... The name and the priority controls on one line, and X Megabites out of Y Megabites on the second line. Very excited. ... Or does anyone want to supply me with an iPhone? .... Despite of this small bugs, I like this UI, and I will continue using it
Kinda like having a Ferrari firing on two cylinders. .... Control-click on the installer package alias and choose Show Original from the pop-up ... Control- click the original installer and choose Show Package Contents from the pop-up menu. .... Apple Computers and Hardware, |-- iPhone/iPod/iPad/iOS
... too necessary (though given the low-accuracy of touch controls it might be reasonable). ... Alternatively, it needs a popup below-the-finger ... selection mechanism and set up the system to work like the iPhone OS's ... (with the popup below-the-finger magnified view), and a popup context menu
Jan 7, 2008 ... InvocationTargetException; def popup = new PopupMenu(); popup. ... background clicks to close the popup, so I set it to 7, which seems like the minimum threshold .... FileMaker Go for iPhone & iPad, |-- Bento™ by FileMaker Inc. ... Web Viewer, |-- Tab Panel Control, |-- Tool Tips, |-- Custom Menus
Mar 15, 2010 ... In full view, a long press will bring up a menu to tag yourself or tag a friend. ... This is why apps like iPhone or BlackBerry can send them. ... The fact that Facebook is easing up on its strict control over what sort of ... the browser popped up with a FB page, but it was not the correct page
TwLauncher Tries to be the iPhone Launcher, Which it is Not .... If you aren't familiar with the Recovery menu, that means you must be new to this whole custom ROM thing. .... Your phone (not the computer) should pop up a superuser request. .... interface looks like... a digital camera, with touchscreen controls
Play/Pause, Skip, select I like or I don't like from the tray icon menu ... Control with multimedia keyboard - Control with global shortcuts: ... Popup tray notification baloon with started track details ..... Do More: Download Last.fm Scrobbler · Download iPod Scrobbler · iPhone App · More Apps · Free Music
A while back a coworker of mine told me he had to pop out the sim and put it back ... he fixed it when he was in the Sounds menu and playing back a ringtone. ... something is docked to the phone like an external speaker system. ... through the speakers and the popup message will keep...popping up
1: Hold home button > brings up a menu (like when holding volume button) ... 10: pop up window on dock icons and the volume could activate faster. ... I think this option would be nice to control the speed of scrolling. .... those who hold the iPhone with one hand and use their thumb to navigate