Search found 14 matches

by stuart
Fri Sep 23, 2005 8:23 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Display a graphic for visted links
Replies: 5
Views: 4527

Hi Scott

Not sure how to solve your problem but I believe the pageimage property is used with the pagematching facility, i.e. if the page you were on matched the url in the aI then the pageimage would be displayed.
Don't think this is what you want.

You might try the Page Highlighting Module demo ...
by stuart
Fri Sep 23, 2005 8:06 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Child Folder doesn't display images or links properly
Replies: 6
Views: 6240

Steve

I can't get to your script files so I can't be sure.

My understanding is (and I could be wrong) that the reference you place your page to the *.js file is like an include statement. So it's just like the the text in the *.js file were written in you web page.
Therefore the references to the ...
by stuart
Fri Sep 23, 2005 7:51 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: What Does BDMenu Function Do?
Replies: 3
Views: 2909

Thanks Ruth
That explains that nicely :D

Do you happen to know of a complete list of the menu and item elements.
I have seen the quick reference guides but looking at some of the code snippets in the forums they seem to be using elements that aren't described in thise documents

Stuart
by stuart
Thu Sep 22, 2005 10:06 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: How to get Treemenu to autoexpand on mouseover
Replies: 2
Views: 2484

Not tried this myself but the frames example uses the onfunction and offfunction properties to open and close submenues as below.

Code: Select all

aI("text=Top 1;showmenu=sub1;target=body;onfunction=openSubmenu();offfunction=closeSubmenu();");
Might be worth giving that a try

Stuart
by stuart
Thu Sep 22, 2005 9:43 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Calling javascript functions
Replies: 2
Views: 2653

Hi Paxton

Calling javascript is easy
The simplest way (and I'm no expert here) is to add the javascript function to you menu item declaration
aI("text=Spam Assassin;url=http://www.spamassassin.org/;onfunction=[i]myjavafunction[/i]");
you can also use offfunction, clickfunction etc.
There may be ...
by stuart
Wed Sep 21, 2005 2:04 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: What Does BDMenu Function Do?
Replies: 3
Views: 2909

What Does BDMenu Function Do?

Can anyone tell me what the BDMenu function does and when it should be used

Thanks

Stuart
by stuart
Sun Sep 11, 2005 2:22 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: How do I open a treemenu by default?
Replies: 8
Views: 6168

I believe the treeMenuDisplay function is looking for an integer as its first parameter being the integer value of the menu

I am haveing problems getting this to work as well.

Did you every get a solution to this?

I don't get any errors but the function appears to do nothing.

Stuart
by stuart
Sat Sep 10, 2005 10:33 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problem with tooltips and frames
Replies: 1
Views: 2216

Problem with tooltips and frames

I'm having a problem with using tooltips when I have a frames layout

My header frame code is as below. I have just one tooltip at the moment and as far as I can see this is basically the same as the tooltips sample.
However with this code the submenus do not open.
<html>

<head>


<SCRIPT language ...
by stuart
Sat Sep 10, 2005 10:15 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Frames Menu Help
Replies: 4
Views: 4120

Hi John

I've had a similar problem with my site.
My menus are derived from a database but the menu does not change that often and aren't that extensive.

What I am trying is using application variables.
When the page loads it checks if an application variable is empty or not. If it is the page ...
by stuart
Wed Aug 31, 2005 9:36 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems with hiding and showing menus
Replies: 8
Views: 5906

Source code from contents frame

<html>

<head>
<script>

function mm_showMenu(menuName) // , alwaysVisState = optional. 1=on, 0=off
{
var menuNum = getMenuByName(menuName);
if (arguments.length > 1)_m[menuNum][7] = arguments[1];
menuDisplay(menuNum, 1);
}

function mm_hideMenu(menuName ...
by stuart
Wed Aug 31, 2005 12:25 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems with hiding and showing menus
Replies: 8
Views: 5906

Hi Kevin

Yes your right about what I am trying to do.

What I'd like to achieve is:-
No matter which menu is selected it should always appear in the same place in the contents frame and scroll with the page.

I'm afraid I don't have a url on the internet with this on as yet. I'm working with a ...
by stuart
Tue Aug 30, 2005 5:44 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems with hiding and showing menus
Replies: 8
Views: 5906

Hi Kevin

No the only menu with top and left set is the main navigation menu in the header frame.
If I set the Alwaysvisible property to true for all the menus they all appear one on to of the other in the contents frame.

Stuart
by stuart
Tue Aug 30, 2005 9:59 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems with hiding and showing menus
Replies: 8
Views: 5906

Hi Kevin

Yes I have seen the frames sample and I've got all that working.
I have a top frame with the main menu
I have a main frame with the sub menues.
That all works fine.
What I am now trying to do is to put a table of contents into a side frame (Contents frame)
The contents that will be ...
by stuart
Mon Aug 29, 2005 11:29 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problems with hiding and showing menus
Replies: 8
Views: 5906

Problems with hiding and showing menus

I am having problems hiding and showing menus.
My knowledge of java is limited but I have managed to get the solution partly working

I am using a frames set-up with three frames.
The top frame has the main navigation menu and the main frame has the submenus. I am trying to get the submenu to open a ...