flash 动态文本怎么设置属性?
我在动态文本添加了计时代码,代码如下,但是文本的属性和位置却无法改变的,位置还可以更改坐标,但属性却无法更改,在代码里又不知道怎么设置。谁有更好的方法,或者更好的代码?v...
我在动态文本添加了计时代码,代码如下,但是文本的属性和位置却无法改变的,位置还可以更改坐标,但属性却无法更改,在代码里又不知道怎么设置。谁有更好的方法,或者更好的代码?
var timeText:TextField = this.createTextField("time", 0, 0, 0, 100, 20);
function init() {
hitTime = 0;
beginRunTime = 0;
totalRunTime = 0;
timeText.text = "00:00:00";
}
init();
onMouseDown = function () {
switch (hitTime) {
case 0 :
//开始计时
hitTime++;
recordRunTime();
run();
break;
case 1 :
//暂停计时
hitTime++;
delete onEnterFrame;
break;
case 2 :
//恢复计时
hitTime++;
recordRunTime();
run();
break;
case 3 :
//停止计时
init();
delete onEnterFrame;
break;
}
};
function recordRunTime() {
beginRunTime = getTimer();
}
function run() {
onEnterFrame = function () {
trace(hitTime);
if (hitTime == 1) {
var totalHm = totalRunTime=getTimer()-beginRunTime;
} else if (hitTime == 3) {
var totalHm = getTimer()+totalRunTime-beginRunTime;
}
var totalM = int(totalHm/1000);
var hm = totalHm%1000;
var m = totalM%60;
var f = int(totalM/60);
timeText.text = f+":"+m+":"+hm;
};
} 展开
var timeText:TextField = this.createTextField("time", 0, 0, 0, 100, 20);
function init() {
hitTime = 0;
beginRunTime = 0;
totalRunTime = 0;
timeText.text = "00:00:00";
}
init();
onMouseDown = function () {
switch (hitTime) {
case 0 :
//开始计时
hitTime++;
recordRunTime();
run();
break;
case 1 :
//暂停计时
hitTime++;
delete onEnterFrame;
break;
case 2 :
//恢复计时
hitTime++;
recordRunTime();
run();
break;
case 3 :
//停止计时
init();
delete onEnterFrame;
break;
}
};
function recordRunTime() {
beginRunTime = getTimer();
}
function run() {
onEnterFrame = function () {
trace(hitTime);
if (hitTime == 1) {
var totalHm = totalRunTime=getTimer()-beginRunTime;
} else if (hitTime == 3) {
var totalHm = getTimer()+totalRunTime-beginRunTime;
}
var totalM = int(totalHm/1000);
var hm = totalHm%1000;
var m = totalM%60;
var f = int(totalM/60);
timeText.text = f+":"+m+":"+hm;
};
} 展开
2个回答
展开全部
username.type = TextFieldType.DYNAMIC( / INPUT);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
as2我不太清楚,我知道as3里有一个textForMat的类是专门改文本属性的,你可以试试
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询