void addObjectParamTag(String, String)

New in PopChart Server 4.0.3. This method is not available in the JavaBean PopChart Embedder.

Syntax myPopChart.addObjectParamTag(name, value)

Description Adds a <param> tag to PopChart images that have been embedded using an <object> tag. Currently, this includes FLASH and PDF images in Internet Explorer only. This allows you to extend the functionality of the plug-ins that are used to display your PopChart images.

One common use for this method is to set the display mode of a FLASH image to transparent, so that dynamic HTML elements (such as menus) will overlap the image. The FLASH plug-in allows you to do this by adding the following <param> tag to the <object> element.

<param name="WMODE" value="transparent" />

To have the PopChart Embedder add this <param> tag to your FLASH PopChart image, you would make the following method call.

myPopChart.addObjectParamTag("WMODE","transparent")

Parameters The addObjectParamTag() method accepts the following parameters.

name

String

The value of the name attribute for the <param> tag that you are creating.

value

String

The value of the value attribute for the <param> tag that you are creating.