putting variables value into .text
Posted
by Hwang
on Stack Overflow
See other posts from Stack Overflow
or by Hwang
Published on 2010-03-24T07:15:40Z
Indexed on
2010/03/24
7:23 UTC
Read the original article
Hit count: 201
How can I input varables value into a textfield?
var i:uint=0
for(i; i<4; i++){
pageText.text=i+1
}
If i use i+"something" then it can get the i value, but other than that it could now get i value.
© Stack Overflow or respective owner