2010-01-14 92 views
3

在我的舞臺上,我有一個動態文本字段(實例名稱= lives)。Flash Actionscript 3將一個數字傳遞給動態文本字段

在我的動作中,我創建了一個名爲livesnum的數字變量。然後在其下方我設置文本框的值是livesnum可變的,但我得到了以下錯誤:

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

我的動作如下:

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

lives.text = livesnum; 

我將如何實現設置文本框作爲變量的數值?

回答

4

使用toString()函數:

lives.text=livesnum.toString() 

或使用強制String()

lives.text=String(livesnum); 
+0

砸,工作一種享受。 – Probocop

相關問題