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
Post a Comment