Search found 4 matches

by sacha
Mon Sep 09, 2002 8:46 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Menus generated dynamically??
Replies: 1
Views: 2328

Hi,

Perl is executed on the server - JavaScript is executed by the client browser. So Perl has no chance to access any JavaScript functions.

Of course you can handle the JavaScript file as a text file and manipulate it with Perl on the server.

This way you can write the addmenu function calls ...
by sacha
Mon Sep 09, 2002 6:38 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: Using PHP to configure the menu
Replies: 1
Views: 2711

Hi,

you can use the standard menu_array.js file, rename it into menu_array.php and add the following php-Code at the very top of the file:

<?php
header('Content-Type: text/javascript;charset=iso-8859-1');
?>

and then the rest of the script. Just replace the array values with your php-variables ...
by sacha
Mon Sep 09, 2002 3:51 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: hiding divs
Replies: 0
Views: 2183

hiding divs

Hi,

to avoid the flickering effects that occur on IE/NS7 Mac on page with flash animations I`d like to put a div around the flash and hide it with the hide-parameter of the script.

I named the div: <div id="flashlayer"> and used the hide-parameter like this:
"flashlayer", // ID of the div you want ...
by sacha
Mon Sep 09, 2002 3:12 pm
Forum: Archived Topics for the old Version 3.0 JavaScript Menu
Topic: flickering in IE and Netscape 7 on Mac
Replies: 0
Views: 2129

flickering in IE and Netscape 7 on Mac

Hi,

I used the horizontal menu sample on my page. It works fine on Win but on Mac there is a very annoying flicker effect when you move the mouse cursor over the menu entries and submenus. This only happens when there are also flash-animations on the page.

Is there a way to avoid the flickering ...