flash利用as動(dòng)態(tài)畫(huà)柱狀圖
1、新建4個(gè)空的電影剪輯
2、把4個(gè)電影剪輯放到第一幀場(chǎng)景上,命名為mc0、mc1、mc2、mc3
3、在第一幀貼上如下as源代碼
System.useCodepage = true;//除亂碼
var xl = new LoadVars();//創(chuàng)建 LoadVars 對(duì)象的實(shí)例
xl.load("xl.txt");//引導(dǎo)外部文本中的變量
xl.onLoad = function(suc) {
if (suc) {
nums = [xl.num0, xl.num1, xl.num2, xl.num3];//外部文本中的變量存入數(shù)組中
}
};
for (var i = 0; i<=3; i++) {
_root["mc"+i]._yscale = -20;//初始縮放比例
_root["mx"+i] = _root["mc"+i]._x;//存貯初始坐標(biāo)值
_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);//創(chuàng)建電影實(shí)例四個(gè)用于下句中綁定庫(kù)中的動(dòng)態(tài)文本
_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];//顯示動(dòng)態(tài)數(shù)值
}
};
4、運(yùn)行測(cè)試
本文地址:http://m.gazebo2go.com/blog/archives/flash-dynamicly-draw-bar.html