I have a chart with 3 series. I use the SeriesInterpolate effect with the column series. I want to use the effectEnd event to call a function.
<mx:SeriesInterpolate id="interpolate" duration="800" elementOffset="0" effectEnd="effectEndHandler(event);"/> This event dispatches, but does so continually. Therefore my callback function is continually being called. The column series is the only object that I am using this effect with. Any idea as to why this would happen? Thanks, vic

