gpt4 book ai didi

actionscript-3 - Flash Actionscript 3 将数字传递给动态文本字段

转载 作者:行者123 更新时间:2023-12-04 06:38:39 25 4
gpt4 key购买 nike

在我的舞台上,我有一个动态文本字段(实例名称 = 生命)。

在我的 ActionScript 中,我创建了一个名为 livesnum 的数字变量。然后在此之下,我将文本字段值设置为 livesnum 变量,但出现以下错误:

1067: Implicit coercion of a value of type Number to an unrelated type String.

我的 ActionScript 如下:

var livesnum:Number = 4; //Amount of lives

lives.text = livesnum;

如何将文本字段设置为变量的数值?

最佳答案

使用toString()函数:

lives.text=livesnum.toString()

或使用强制转换String():

lives.text=String(livesnum);

关于actionscript-3 - Flash Actionscript 3 将数字传递给动态文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2064770/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com