bhad

Members
  • Content count

    2
  • Joined

  • Last visited

About bhad

  • Rank
    Forum Newbie
  1. Save Image of chart created programmatically with AS2

    Thanks. I have 3.0.2 so that must be the problem. Does that also explain why the "rendered" event is not being dispatched when the chart rendering is complete? I can't see where any of the Chart classes import flash.events?
  2. 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.