You can't use this line.preloader_txt = int(pcent)+" || 1mb";
To assign some text to a TextField you must use it's text variable like this:
Actionscript Code:preloader_txt.text = int(pcent)+" || 1mb";
I'm not sure it's gonna solve the problem, but if you upload your .fla file here, it'd be easier to find out what's the problem
The problem may also be with the font itself. For example I always have this sort of problems when I use Russian (cyrillic) fonts
btw, I think a good programming practice is to make sure you use the correct data types. When I assign some text to a text field I enforce it to be String. Like:
It's just an adviceActionscript Code:preloader_txt.text = String(int(pcent)+" || 1mb");




Reply With Quote
