I am creating a chart programmatically inside my own flash file using AS2 as such:
var chart:Column3DChart = new Column3DChart(chartContainer_mc, 1, 367, 226, 0, 0, false, "EN", "noScale");
This works perfectly. Now I want to save the created chart as an image. So i add the 'imageSave' and 'imageSaveURL' attributes to the chart XML but I still do not have the option to save the chart as an image.
Are there additional classes I need to import to make this work? I don't want to have to use Container3D.swf in addition to my flash file in order to make this work.