|
Could you inform me please what I have to do in this javascript drag drop generator?
Return to Recent Questions
Q:
I have at the moment only one selling e-book on my website.
I know I will have to learn all. But I am sure that for starting
and for just one e-book I don’t need to do everything.
I am a newbie, and all at once it is hard for me.
Could you inform me please what I have to do in this javascript drag drop generator?
And when my e-book is selling I will have time to study the whole thing.
A:
Unfortunately we don't have step by step tutorial now. We'll try to
create it in the nearest time.
1. Create your javascript drag drop in DHTML Tuner application.
You can create any javascript drag drop ou like in DHTML Tuner.
DHTML Tuner supports DHTML Menu (http://dhtml-menu.com) &
DHTML Tree (http://dhtml-menu.com/dhtml-tree/) & DHTML Tabs (http://dhtml-menu.com/tabs/)
Use ready to use templates. You can find them in the "Templates"
window.
When you open DHTML Tuner ( DHTML Menu ) you can click "File/New"
and add items and subitems using buttons "Add Item" and "Add Subitem" on
the main window.
Set items and subitems parameters on the "Item Parameters"
window.
See also other parameters for the javascript drag drop on the main window.
More info about javascript drag drop parameters you can find on our site:
http://dhtml-menu.com/menu/parameters-info.html
http://dhtml-menu.com/menu/menu-items-info.html
You can also use Individual Styles for items and subitems
http://dhtml-menu.com/menu/individual-item-styles-info.html
http://dhtml-menu.com/menu/individual-submenu-styles-info.html
2. Install the javascript drag drop on your page.
You can click, for example, File/Export to HTML (you can't do it in
the MAC version).
Add several rows into your html page.
<head>
...
<!-- DHTML Menu -->
<noscript><a href="http://dhtml-menu.com">Javascript drag drop by DHTML-Menu.com</a></noscript>
<script type="text/javascript">var dmWorkPath="menu.files/";</script>
<script type="text/javascript" src="menu.files/dmenu.js"></script>
<script type="text/javascript" src="data-menu.js"></script> //data-menu.js - data file created in DHTML Tuner.
...
</head>
<body>
...
<table>
<tr><td><script type="text/javascript" src="menu.files/data.js"></script></td></tr>
</table>
...
</body>
You should also copy all engine files
dmenu.js
dmenu4.js
dmenu_add.js
dmenu_dyn.js
dmenu_key.js
dmenu_cf.js
dmenu_popup.js
dmenu_ajax.js
into "menu.files/" folder. You should place this folder in the
same folder with your index.html page.
Return to Recent Questions
|