Actionscript 2.0 element.text always outputs "00"

106 Views Asked by At

I'm fighting against a strange behaviour with my actionscript! After setting the four integer variables from the MovieTimer sprite (hour, minute, second, mili-sec) and concate them i got always double zero: 00

    stop ();
    delete this.onEnterFrame;
    var str1;
    var str2;
    var mili;
    var second;
    var minute;
    var hour;
    var timer;

    mili = _root.MovieTimer.txt_mili.text;
    second = _root.MovieTimer.txt_sec.text;
    minute = _root.MovieTimer.txt_min.text;
    hour = _root.MovieTimer.txt_heures.text;

    timer = hour+' : '+minute+' : '+second+' : '+mili;

_root.MovieSpellFinish.TextTime.text = timer;

_root.MovieSpellFinish.TextTime.text outputs: 00

is there any solutions for this??

1

There are 1 best solutions below

0
On

If you are using Embedded fonts you might need to check that you have the colon symbol embedded. Also you should check that the TextField is wide enough to accommodate the string you are trying to display.