Search found 14 matches

by racine
Fri Jul 26, 2002 8:42 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Need help placing Menu in a Table?
Replies: 16
Views: 11555

That looks fine, but there are also some specific settings you need to have in your menu.

addmenu(menu=["pageedit",
21, // Menu Top - The Top position of the menu in pixels
0, // Menu Left - The Left position of the menu in pixels
, // Menu Width - Menus width in pixels
1, // Menu Border Width ...
by racine
Fri Jul 26, 2002 6:09 am
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Version 3.4.11 Slow?
Replies: 11
Views: 8538

I took out the effects in total, and it's now as fast as it was with the old version -with- the effects
by racine
Thu Jul 25, 2002 5:21 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Version 3.4.11 Slow?
Replies: 11
Views: 8538

I take that back, it's slow even when i'm local (just more so when remote) I defently see an issue with the/any images in the menu re-loading each time you mouse over them, but beyond that even with no graphics, but sub menus on all menus, it seems slugish. (even on the Milonic site it's slugish) I ...
by racine
Wed Jul 10, 2002 7:40 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Version 3.4.11 Slow?
Replies: 11
Views: 8538

i've done some more testing, and it does seem to be connection speed related. At the office (lan speed to this site) no problems.

But from home, on dial-up, it's painfull. I can see it poping up with -downloading image....- in the task bar.

The odd thing at this point is I KNOW i was seeing some ...
by racine
Tue Jul 09, 2002 8:31 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Need help placing Menu in a Table?
Replies: 16
Views: 11555

Oh, I see what you're saying. I think there are actually some issues with having the JS script outside of the HEAD tags as i recall (with only certain browsers?) not sure of the exact issues tho.
by racine
Tue Jul 09, 2002 7:32 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Need help placing Menu in a Table?
Replies: 16
Views: 11555

odd, i thought he posted over the weekend he resolved the issue (forgot the complete <script>PlaceMenu("menu1")</script> ) as i recall. But I don't see the replay now :?
by racine
Tue Jul 09, 2002 8:21 am
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Version 3.4.11 Slow?
Replies: 11
Views: 8538

slow menu

ok, did a little testing and it's not the effects. (turned all effects off)

It looks like the menu is randomly? re-loading images within the menu on mouse overs?

If you go to: http://www.zomix.com/v3 and run your mouse up and down the menu, you'll see a 'downloading (x) images' pop up here and ...
by racine
Thu Jul 04, 2002 10:50 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Need help placing Menu in a Table?
Replies: 16
Views: 11555

menu in table

Give us a sample of your code so we can look at it. The above sample in i's basic form works fine, and adding graphics should have no effect.

Are you using some sort of GUI editor?
by racine
Wed Jul 03, 2002 10:58 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Version 3.4.11 Slow?
Replies: 11
Views: 8538

speed

i'll have to revisit this issue. But as i recall when i added a style such as 'shadow' with maybe a fade on load, it really slowed down. Taking away all the styles seem to speed it back up. I'll go through and test it again and let you know exactly the config is.
by racine
Fri Jun 21, 2002 10:17 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: ColdFusion Tag
Replies: 5
Views: 13055

Dynamicly Populating Menu from CF

I actually have a record for each menu entry. Each entry also has a parent id, 0 being the top level. With this information we can query the DB and extract the whole menu structure.

Example of our PullMenuCreate.cfm file (this creates a file called 'pullmenu4.cfm' that would be included in our main ...
by racine
Fri Jun 21, 2002 8:52 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Need help placing Menu in a Table?
Replies: 16
Views: 11555

Placing Menu in Table

This also worked well for me:

<table><TR><TD>
<SCRIPT>PlaceMenu("menu1")</SCRIPT>
&nbsp;
</TD></TR></TABLE>

Note the &nbsp; was important as i recall
by racine
Fri Jun 21, 2002 8:49 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Version 3.4.11 Slow?
Replies: 11
Views: 8538

Version 3.4.11 Slow?

Is it me or does this version (3.4.11) seem a lot slower than say version 3.3.19. When I mouse over the menus, it's real laggy. if i switch back to version 3.3.19 it's quick again.
by racine
Fri Jun 21, 2002 8:44 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Show / Hide DIV
Replies: 22
Views: 17375

Issues with Multiple ID definitions

I'm able to create a single ID definition to hide a single form element, no problems there. But as soon as I add a second ID ie:

"formstohide;formstohide2", // ID of the div you want to hide on MouseOver (useful for hiding form elements)

Then nothing works anymore (no form elements hide)

I'm ...
by racine
Fri Jun 21, 2002 8:39 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: ColdFusion Tag
Replies: 5
Views: 13055

Parent/Child menu from CF

I'm currently doing exactly what you're asking. What we do though to same on execution time is actually dynamicly write out a static file when ever a change to the menu has been made, therefore saving on CPU cycles by not having to 'create' a menu every visit.

I create a 'header.js' file with the ...