To enable your parent movie to track links in FusionWidgets, you need to add S- before every link specified in the XML data document. This instructs the chart to convey the link to its parent SWF movie. An example is given below:
<dial id='CPU1' value='49' link='S-parameter'/>
Here, S- is the prefix to indicate that this link should be bubbled up to parent SWF. When this link is bubbled up, the specified parameter is passed to the event handler.
If you need to pass multiple parameters, one way will be to use a comma to separate each new value. Then String.split the parameter into individual values in the called function. This is a simple method that will only work with string values. |