欢迎光临
我们一直在努力

flash动态柱状图表制作原理剖析_flash教程

建站超值云服务器,限时71元/月

flash动态柱状图表制作原理剖析_flash教程


  1、外部xl.txt内容:


        num0=480&num1=320&num2=500&num3=200& //柱状高度来源


  2、主场景第一帧上放四个实例名称分别是mc0、mc1、mc2、mc3的电影实例。


  3、主场景第一帧上增加代码:
         System.useCodepage = true;//除乱码
    var xl = new LoadVars();//创建 LoadVars 对象的实例
    xl.load(“xl.txt”);//引导外部文本中的变量
    xl.onLoad = function(suc) {
     if (suc) {
        nums = [xl.num0, xl.num1, xl.num2, xl.num3];//外部文本中的变量存入数组中
     }
    };
    for (var i = 0; i<=3; i++) {
      _root[“mc”+i]._yscale = 10;//初始缩放比例
      _root[“mx”+i] = _root[“mc”+i]._x;//存贮初始坐标值
      _root[“my”+i] = _root[“mc”+i]._yscale;//存贮初始缩放值
    }
    this.onEnterFrame = function() {
     for (var i = 0; i<=3; i++) {
       _root[“mc”+i]._yscale = _root[“my”+i]*nums[i];//显示缩放变化
       _root.createEmptyMovieClip(“mytxt”+i, i*2);//创建电影实例四个用于下句中绑定库中的动态文本
       _root[“mytxt”+i].attachMovie(“txtmc”, “txt”+i, 1000, {_x:_root[“mx”+i], _y:(Math.round(Number(_root[“mc”+i]._y-nums[i]*(0.3))))});//
       _root[“mytxt”+i][“txt”+i].t.text = nums[i];//显示动态数值
      }
    };

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » flash动态柱状图表制作原理剖析_flash教程
分享到: 更多 (0)