Search found 5 matches

by tom2
Thu Dec 30, 2004 4:12 am
Forum: Help & Support for DHTML Menu Version 5+
Topic: fontsize in menu item
Replies: 5
Views: 3698

Nice Catch

Hi Ruth,

Nice catch. I was out to lunch on that one.

THanks.

Tom.
by tom2
Wed Dec 29, 2004 8:01 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: fontsize in menu item
Replies: 5
Views: 3698

fontsize question

Hi Ruth,

Since the input to aI is just a string, the plus signs concatenate
the individual strings together. The sections are generated dynamically.

As for the extra semicolon, is that a problem?

Tom.
by tom2
Wed Dec 29, 2004 6:05 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: fontsize in menu item
Replies: 5
Views: 3698

Additional Info

Forgot the error message.

On IE 6.0, the error was not fatal, but the error indicated an invalid arguement .

on this line in mmenudom.js version 5.66

if(_I[7])_gs.background=_I[7];
by tom2
Wed Dec 29, 2004 6:00 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: fontsize in menu item
Replies: 5
Views: 3698

fontsize in menu item

Hi,

I ran into a problem where offbgcolor was followed by a fontsize.

I fixed the code to move the fontsize ahead of the offbgcolor item

aI("text=`Players`;rawcss=padding:0px 3px 0px 3px;;url="+"test.html"+
";oncolor=#00285d;offcolor=#ffffff;onbgcolor=#ffffff;offbgcolor=#00285d;"+";fontsize:8px ...
by tom2
Fri Aug 20, 2004 4:30 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: back quote questions
Replies: 0
Views: 2270

back quote questions

Hi,

I have had varying success with using the backquote ` character around
the text= data.

aI("text=`<div>test</div>`;url=/testurl;");
FAILS with runtime error: Line 24 Error: "Undefined" is null or not an object.

aI("text=<div>test</div>;url=/testurl;");
WORKS with backquotes removed.

ALso, I ...