Text Append
Most of the time, we use the function “append” in list.
–
on beginsprite me
list = []
list.append(“A”)
list.append(“BBB”)
end
–
Then the result of list will be ["A","BBB"]
However, director text member also support append function.
–
on beginsprite me
member(“mytext”).text = “”
member(“mytext”).append(“123″)
end
–
The text of member(“mytext”) will become “123″. This is useful if you use it with “repeat with” function.
Subscribe to get free latest updates by email.
Like our Facebook Page.
LIKE It & Leave A Comments



nice.. thank you, maybe i must hear for your next lesson.