Sign in to follow this  
Pallav

Transparent Background in Powermaps

Recommended Posts

Hi there, does anyone know if it is possible to define a map with a transparent background. I am trying to develop a web solution, but I need to have a transparent background. I have looked at setting the _alpha variable to zero. Here is the xml file

Share this post


Link to post
Share on other sites

You need to set following in XML:

<chart bgAlpha='0,0' ..>

And, then add 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>

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