|
|
Could it be possible to explain to me how to create cross-frame horizontal navigation bar..
Return to Recent Questions
Q:
Could it be possible to explain to me how to create cross-frame horizontal navigation bar..
A:
To initialize the cross frame menu call dm_initFrame()
function instead of standard dm_init() function within data.js file:
dm_initFrame(framesetID, mainFrameInd, subFrameInd, orientation);
framesetID - id attribute of the frameset;
mainFrameInd - index of the main frame (where the top-menu is placed), >=0;
subFrameInd - index of the subframe (where the submenus will be shown), >=0;
orientation - frame orientaion: 0 - top-to-bottom, 1 - left-to-right; 2 - bottom-to-top; 3 - right-to-left.
So you should create your menu in Deluxe Tuner, save it.
Create html file with your frame set.
Set ID for the first frameset:
<FRAMESET id=frmSet rows=220,*>
<FRAME id=frame1 src="Deluxe Menu Samples_files/cross-frame-horizontal-1.htm"> //menu frame
<FRAME id=frame2 name=frame2 src="Deluxe Menu Samples_files/testlink.htm"> //content frame
</FRAMESET>
Then you should open your data file in any text editor and change
dm_init(); for example to dm_initFrame("frmSet", 0, 1, 0);
You'll find more info here:
http://dm/cross-frame-mode-sample.html
Return to Recent Questions
Related:
- Nov 06, 2006 - Each item is a different width. Can I do this with your html navigation bar?...
- Dec 04, 2006 - When running navigation bar code with IE or Firefox, the background is transparent.
- Jan 07, 2007 - Some graphic files need to draw the top-level horizontal menu bar are missing.
- March 09, 2007 - I am looking to create a html navbar then burn it to a CD. Which license I need?
- March 19, 2007 - I have 25 icons (images) on one page. Each image needs it's own popup layer.
- April 26, 2007 - Can you throw some light on how to create horizontal drop down menu on asp?
- May 06, 2007 - Sub-menus appear away for the menu/ dhtml navigation bar.
- Sep 29, 2007 - Is it possible to create navigation menu resize based on the cell width?
- Nov 12, 2007 - How can I code the DIV to appear in the JS file of horizontal tab menu bar?
- Dec 16, 2007 - Client would like to have the horizontal menu bar stay active on the page they are on.
- Jan 04, 2009 - Is it possible to call a JavaScript function from the dhtml navigation bar?
|