Recent Questions
Q: When set up link by using Tuner app, it point to different dir.
For example I set to: c:\test(HTMLfolder)\Test Link\IntrAC-DC.swf,
then Tuner sets: ["|||||Item b SWF","Test Link/IntrAC-DC.swf", , , , "_parent", , , , ],
It does not work until I move linked files to “c:\test(HTMLfolder)\data-samples\Test Link”
A: Try to set the following parameters
var pathPrefix_img="";
var pathPrefix_link="";
Q: What I have to do for the following problem:
When I press a tab, the new site will be load into the browser.
Great! BUT the pressed button is not be marked. Always the Tab 1 is blue. What's wrong??
A: This Tabs menu can save pressed item automatically within1 page only. If you open another page, the menu can't remember presseditem. You should do that manually using Javascript and menu parameters( var bselectedItem and var var bselectedSmItem) or using any server-side script (php, asp, etc.)
Deluxe Tabs doesn't support API functions which can return theselected tab.
If your site is written on PHP you can set "bselectedItem" and "varbselectedSmItem" parameters based on your link beforeyou call your data file.
For example, move "bselectedItem" and " var bselectedSmItem" parametersfrom your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
var bselectedItem=<?php echo $seltabs; ?>;
var bselectedSmItem=<?php echo $selsmtabs; ?>;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
You should define seltabs and selsmtabs using server side script.
You can also set on every page before you call data.js file, forexample:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
var bselectedItem=4;
var bselectedSmItem=3;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
Q: My pop out menus in the vertical navigation bar appear on the left instead of the right.
A: You can try to change the following parameter:
var subMenuAlign="left";
Q: I have followed the instructions on
http://deluxe-menu.com/objects-overlapping-sample.html but when my page is viewed over https the html menus still appear behind Flash objects.
Is there anything else that can do to fix this?
A: Try to set the following parameter:
var useIFRAME=1;