Sign in to follow this  
johnjaccob

DHTML hidden behind flash graph/charts [Solved]

Recommended Posts

FusionCharts is a set of Flash movies, and as kind of plugins, are rendered in a special way by the browsers (a method known as "windowed"), making them the topmost objects in a page.

To allow DHTML objects appear over a Flash movie just add this parameter:

WMode=Transparent

to the Flash

<object>

tag.

It should look like this:

<param name="WMode" value="Transparent">

In order to support Mozilla-based browsers and other browsers, such as Safari, you should also include the wmode parameter in the <embed> tag, like this:

<embed wmode="transparent" .......></embed>

If you're using the FusionCharts JavaScript class to embed your charts, you may download the updated JavaScript class from http://www.fusioncharts.com/Downloads/FusionChartsWMode.zip

Share this post


Link to post
Share on other sites

Hmmm.... thanks for the fix - works perfectly for me in IE7, FF but in IE6 the menu can now be seen 'through' the Flash, but is still behind the Flash. When you mouse-over the menu which is behind the Flash, the menu can not be selected.

 

 

 

EDIT: I am using the new .js file

 

 

 

Any thoughts?

 

 

 

Many thanks, David

Edited by Guest

Share this post


Link to post
Share on other sites

You should update the title of the topic with a key word like [solved].

 

It helps users to understand that the problem or question has a clear answer.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this