actionscript 3 - as3 .text not working -


so heres code im using:

endscreen.scoreprint.text = string(score); endscreen.distanceprint.text = string(distance); 

and doesent show anything, while same code in other places in app works, tried embed fonts , stuff still blank space. doing wrong?

edit: endscreen movieclip without linkage, manipulated .visible , scoreprint , distanceprint part of movieclip.

scoreprint , distanceprint identical in names , following: classic text -> dynamic text

try

endscreen.scoreprint.text = "" + score; 

if not, does

trace("" + score); 

show anything?


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -