a*********8 发帖数: 5368 | 1 正在学习AS3.
买了个flash chart pro的package (只有swf文件和sample的xml文件),可以通过xml
文件提供的data生成chart的。
计划是有两个button,每按一个button就会显示一个chart (swf文件)
我现在只有AS1的code:
MovieClip.prototype.loadFlashChart=function(xml_file,xml_string,target_swf,x
,y)
{
if(xml_file != "" && xml_file != undefined && xml_file != null){
_root.xml_file=xml_file;
}else{
_root.xml_string=xml_string;
}
this.loadMovie(target_swf);
this._x=x;
this._y=y;
};
this.createEmptyMovieClip("ContainerFlashChart",0);
this.ContainerFlashChart.loadFlashChart("fcp-3d-column-chart-v2.xml","","fcp
-bars.swf",0,-30);
报错说 Access undefined property_root。
求教这段code应该怎么改可以在AS3里面用? | f********p 发帖数: 8584 | 2 问题是这个chart pro如果是as1版本的在as3里面肯定不能用。
as3里面_root,_x,_y change to root,x,y
xml
,x
【在 a*********8 的大作中提到】 : 正在学习AS3. : 买了个flash chart pro的package (只有swf文件和sample的xml文件),可以通过xml : 文件提供的data生成chart的。 : 计划是有两个button,每按一个button就会显示一个chart (swf文件) : 我现在只有AS1的code: : MovieClip.prototype.loadFlashChart=function(xml_file,xml_string,target_swf,x : ,y) : { : if(xml_file != "" && xml_file != undefined && xml_file != null){ : _root.xml_file=xml_file;
| f********p 发帖数: 8584 | 3 createEmptyMovieClip,loadMovie也都没有了
【在 f********p 的大作中提到】 : 问题是这个chart pro如果是as1版本的在as3里面肯定不能用。 : as3里面_root,_x,_y change to root,x,y : : xml : ,x
|
|